mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-17 04:20:44 +02:00
gnu: Add go-github-com-docker-docker.
* gnu/packages/golang-xyz.scm (go-github-com-docker-docker): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Change-Id: I3d64e95091a2a050dffedb4917da4d2576ce4a74
This commit is contained in:
parent
6dc2329345
commit
5fdd3ab367
1 changed files with 40 additions and 0 deletions
|
@ -5262,6 +5262,46 @@ store, and deliver content. It contains Docker Registry 2.0 and libraries to
|
|||
interact with distribution components.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-docker-docker
|
||||
(package
|
||||
(name "go-github-com-docker-docker")
|
||||
(version "25.0.7")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/moby/moby")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0852mrvs8602azqzx2zhb1xl0vs7baw8qfmkgrl625xm5hxrigvq"))
|
||||
(snippet
|
||||
#~(begin (use-modules (guix build utils))
|
||||
(delete-file-recursively "vendor")))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/docker/docker"
|
||||
#:skip-build? #t
|
||||
#:tests? #f))
|
||||
(propagated-inputs (list go-github-com-docker-go-units
|
||||
go-github-com-containerd-containerd
|
||||
go-github-com-containerd-log
|
||||
go-github-com-gogo-protobuf
|
||||
go-go-opentelemetry-io-otel
|
||||
go-github-com-moby-sys-user
|
||||
go-github-com-moby-sys-userns
|
||||
go-github-com-moby-sys-sequential
|
||||
go-go-opentelemetry-io-contrib
|
||||
go-github-com-klauspost-compress
|
||||
go-github-com-moby-docker-image-spec))
|
||||
(home-page "https://github.com/docker/docker")
|
||||
(synopsis "The Moby Project")
|
||||
(description
|
||||
"Moby is an open-source project created by Docker to enable and accelerate
|
||||
software containerization.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-docker-docker-credential-helpers
|
||||
(package
|
||||
(name "go-github-com-docker-docker-credential-helpers")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue