1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 03:20:43 +02:00

gnu: Add go-github-com-docker-cli.

* gnu/packages/golang-xyz.scm (go-github-com-docker-cli): New variable.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Change-Id: I3ceeccb8314c00812befcdfe4ee09c8228e9c8df
This commit is contained in:
David Thompson 2025-06-02 13:59:54 +02:00 committed by Ludovic Courtès
parent 334397e394
commit 4cef0cbd26
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -5061,6 +5061,40 @@ GNU extensions to the POSIX recommendations for command-line options}. This
is an actively maintained fork of @url{https://github.com/ogier/pflag}.")
(license license:bsd-3)))
(define-public go-github-com-docker-cli
(package
(name "go-github-com-docker-cli")
(version "25.0.7")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/docker/cli")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0gaz2pkivky94z8148aa27kdxn548j3r96xa3a9xfqpi6b1rhy27"))
(snippet
#~(begin
(use-modules (guix build utils))
(delete-file-recursively "vendor")))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/docker/cli"
#:embed-files #~(list ".*\\.json")
#:skip-build? #t
#:tests? #f))
(propagated-inputs (list go-github-com-mitchellh-mapstructure
go-gopkg-in-yaml-v2
go-github-com-google-shlex
go-github-com-docker-docker-credential-helpers))
(home-page "https://github.com/docker/cli")
(synopsis "Docker command-line interface")
(description "This repository is the home of the Docker command-line
interface (CLI).")
(license license:asl2.0)))
(define-public go-github-com-docker-distribution
(package
(name "go-github-com-docker-distribution")