mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add go-github-com-opencontainers-go-digest.
* gnu/packages/golang-xyz.scm (go-github-com-opencontainers-go-digest): New variable. Change-Id: Ibb4662a3b3be650e0c4fac2fcb7824a29609f053
This commit is contained in:
parent
a19d1f3e03
commit
b6dee14689
1 changed files with 27 additions and 0 deletions
|
@ -8918,6 +8918,33 @@ syslog, file and memory. Multiple backends can be utilized with different log
|
|||
levels per backend and logger.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public go-github-com-opencontainers-go-digest
|
||||
(package
|
||||
(name "go-github-com-opencontainers-go-digest")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/opencontainers/go-digest")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/opencontainers/go-digest"))
|
||||
(home-page "https://github.com/opencontainers/go-digest")
|
||||
(synopsis "Common digest package used across the container ecosystem")
|
||||
(description
|
||||
"Package digest provides a generalized type to opaquely represent message
|
||||
digests and their operations within the registry. The Digest type is designed
|
||||
to serve as a flexible identifier in a content-addressable system. More
|
||||
importantly, it provides tools and wrappers to work with hash.Hash-based
|
||||
digests with little effort.")
|
||||
(license (list license:asl2.0 license:cc-by-sa4.0))))
|
||||
|
||||
;; XXX: Find a way to source from specification-runtime-spec.
|
||||
(define-public go-github-com-opencontainers-runtime-spec
|
||||
(package
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue