mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-13 18:40:57 +02:00
gnu: go-github-com-docker-distribution: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-docker-distribution): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: I1da803bef6e02969b606a47e6b8058df1a0d04ae
This commit is contained in:
parent
dda8158e7c
commit
fcc03256f1
2 changed files with 43 additions and 43 deletions
|
@ -4104,6 +4104,49 @@ GNU extensions to the POSIX recommendations for command-line options}. This
|
||||||
is an activly maintained fork of @url{https://github.com/ogier/pflag}.")
|
is an activly maintained fork of @url{https://github.com/ogier/pflag}.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-github-com-docker-distribution
|
||||||
|
(package
|
||||||
|
(name "go-github-com-docker-distribution")
|
||||||
|
(version "2.8.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/docker/distribution")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0dbaxmkhg53anhkzngyzlxm2bd4dwv0sv75zip1rkm0874wjbxzb"))
|
||||||
|
(snippet
|
||||||
|
;; TODO: Unbundle more.
|
||||||
|
#~(begin (use-modules (guix build utils))
|
||||||
|
(for-each delete-file-recursively
|
||||||
|
(list "vendor/golang.org"))))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/docker/distribution"
|
||||||
|
#:test-flags #~(list "-test.short")
|
||||||
|
#:test-subdirs
|
||||||
|
#~(list "configuration"
|
||||||
|
"context"
|
||||||
|
"health"
|
||||||
|
"manifest/..."
|
||||||
|
"notifications/..."
|
||||||
|
"uuid")))
|
||||||
|
(native-inputs
|
||||||
|
(list go-github-com-sirupsen-logrus
|
||||||
|
go-golang-org-x-crypto
|
||||||
|
go-golang-org-x-sys))
|
||||||
|
(home-page "https://github.com/docker/distribution")
|
||||||
|
(synopsis
|
||||||
|
"This package is a Docker toolset to pack, ship, store, and deliver content")
|
||||||
|
(description
|
||||||
|
"Docker Distribution is a Docker toolset to pack, ship,
|
||||||
|
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-go-units
|
(define-public go-github-com-docker-go-units
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-docker-go-units")
|
(name "go-github-com-docker-go-units")
|
||||||
|
|
|
@ -2308,49 +2308,6 @@ finding resources located relative to the executable file.")
|
||||||
(home-page "https://github.com/kardianos/osext")
|
(home-page "https://github.com/kardianos/osext")
|
||||||
(license license:bsd-3))))
|
(license license:bsd-3))))
|
||||||
|
|
||||||
(define-public go-github-com-docker-distribution
|
|
||||||
(package
|
|
||||||
(name "go-github-com-docker-distribution")
|
|
||||||
(version "2.8.3")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/docker/distribution")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0dbaxmkhg53anhkzngyzlxm2bd4dwv0sv75zip1rkm0874wjbxzb"))
|
|
||||||
(snippet
|
|
||||||
;; TODO: Unbundle more.
|
|
||||||
#~(begin (use-modules (guix build utils))
|
|
||||||
(for-each delete-file-recursively
|
|
||||||
(list "vendor/golang.org"))))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(native-inputs
|
|
||||||
(list go-golang-org-x-sys go-github-com-sirupsen-logrus
|
|
||||||
go-golang-org-x-crypto))
|
|
||||||
(arguments
|
|
||||||
(list
|
|
||||||
#:import-path "github.com/docker/distribution"
|
|
||||||
#:test-flags #~(list "-test.short")
|
|
||||||
#:test-subdirs
|
|
||||||
#~(list "configuration"
|
|
||||||
"context"
|
|
||||||
"health"
|
|
||||||
"manifest/..."
|
|
||||||
"notifications/..."
|
|
||||||
"uuid")))
|
|
||||||
(home-page
|
|
||||||
"https://github.com/docker/distribution")
|
|
||||||
(synopsis "This package is a Docker toolset to pack, ship, store, and
|
|
||||||
deliver content")
|
|
||||||
(description "Docker Distribution is a Docker toolset to pack, ship,
|
|
||||||
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-aarzilli-golua
|
(define-public go-github-com-aarzilli-golua
|
||||||
(let ((commit "03fc4642d792b1f2bc5e7343b403cf490f8c501d")
|
(let ((commit "03fc4642d792b1f2bc5e7343b403cf490f8c501d")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue