1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 11:00:36 +02:00

gnu: go-github-com-docker-go-units: Move to golang-xyz.

* gnu/packages/golang.scm (go-github-com-docker-go-units): Move
from here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: Ife0e8e396188645b60527e94137693e29f0a4eb0
This commit is contained in:
Sharlatan Hellseher 2025-01-06 21:02:43 +00:00
parent 6a6052c752
commit 82ec069b4f
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 24 additions and 22 deletions

View file

@ -3717,6 +3717,30 @@ GNU extensions to the POSIX recommendations for command-line options}. This
is an activly maintained fork of @url{https://github.com/ogier/pflag}.")
(license license:bsd-3)))
(define-public go-github-com-docker-go-units
(package
(name "go-github-com-docker-go-units")
(version "0.5.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/docker/go-units")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0q92l7pyfg9rn4ljr1warnv1ri6z7svah7m3rqmvmyaw6bzdbbw8"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/docker/go-units"))
(home-page "https://github.com/docker/go-units")
(synopsis "Parse and print size and time units in human-readable format")
(description
"@code{go-units} is a library to transform human friendly measurements
into machine friendly values.")
(license license:asl2.0)))
(define-public go-github-com-docopt-docopt-go
(let ((commit "ee0de3bc6815ee19d4a46c7eb90f829db0e014b1")
(revision "0"))