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:
Sharlatan Hellseher 2024-12-27 15:01:51 +00:00
parent 5615cfd00d
commit e3a429b412
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -8918,6 +8918,33 @@ (define-public go-github-com-op-go-logging
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