1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 20:10:39 +02:00

gnu: go-github-com-itchyny-timefmt-go: Move to golang-xyz.

* gnu/packages/web.scm (go-github-com-itchyny-timefmt-go): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: Ifaca740ff1d46a74c7059fdeb8d56ba69195428e
This commit is contained in:
Sharlatan Hellseher 2024-08-14 18:18:37 +01:00
parent 285835b39f
commit e7dce44e5b
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 24 additions and 23 deletions

View file

@ -24,6 +24,7 @@
;;; Copyright © 2022 (unmatched-parenthesis <paren@disroot.org>
;;; Copyright © 2022 Dhruvin Gandhi <contact@dhruvin.dev>
;;; Copyright © 2022 Dominic Martinez <dom@dominicm.dev>
;;; Copyright © 2022 kiasoc5 <kiasoc5@disroot.org>
;;; Copyright © 2023 Benjamin <benjamin@uvy.fr>
;;; Copyright © 2023 Fries <fries1234@protonmail.com>
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
@ -2950,6 +2951,29 @@ the C++ ABI defined at https://codesourcery.com/cxx-abi/ and the
ABI}.")
(license license:bsd-3)))
(define-public go-github-com-itchyny-timefmt-go
(package
(name "go-github-com-itchyny-timefmt-go")
(version "0.1.6")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/itchyny/timefmt-go")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0ldagirn1wh3klkk1rr96d5b5jbn24aib14x3j73x47cjfqi92wf"))))
(build-system go-build-system)
(arguments
(list #:import-path "github.com/itchyny/timefmt-go"))
(home-page "https://github.com/itchyny/timefmt-go")
(synopsis "Efficient time formatting library (strftime, strptime) for Golang")
(description
"@code{timefmt-go} is a Go language package for formatting and parsing date
time strings.")
(license license:expat)))
(define-public go-github-com-jbenet-go-random
(package
(name "go-github-com-jbenet-go-random")

View file

@ -5494,29 +5494,6 @@ JSON, XML, properties, CSV and TSV.")
(propagated-inputs '())
(inputs (package-propagated-inputs go-github-com-mikefarah-yq-v4))))
(define-public go-github-com-itchyny-timefmt-go
(package
(name "go-github-com-itchyny-timefmt-go")
(version "0.1.6")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/itchyny/timefmt-go")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0ldagirn1wh3klkk1rr96d5b5jbn24aib14x3j73x47cjfqi92wf"))))
(build-system go-build-system)
(arguments
(list #:import-path "github.com/itchyny/timefmt-go"))
(home-page "https://github.com/itchyny/timefmt-go")
(synopsis "Efficient time formatting library (strftime, strptime) for Golang")
(description
"@code{timefmt-go} is a Go language package for formatting and parsing date
time strings.")
(license license:expat)))
(define-public go-github-com-itchyny-gojq
(package
(name "go-github-com-itchyny-gojq")