1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add go-github-com-containerd-platforms.

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

Change-Id: I846e26f2414268452d1d21e0387f0c2eb970c32e
This commit is contained in:
Sharlatan Hellseher 2025-01-09 21:39:57 +00:00
parent fc2e80506a
commit 5e95ca96db
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -3167,6 +3167,36 @@ way.")
loggers through a context, and attaching context to the logger.")
(license license:asl2.0)))
(define-public go-github-com-containerd-platforms
(package
(name "go-github-com-containerd-platforms")
(version "0.2.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/containerd/platforms")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "03clc3b2fvlym5d2rvgima0p0br1m34p8gs7rn6y5rp7v7z601sx"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/containerd/platforms"))
(native-inputs
(list go-github-com-stretchr-testify))
(propagated-inputs
(list go-github-com-containerd-log
go-github-com-opencontainers-image-spec
go-golang-org-x-sys))
(home-page "https://github.com/containerd/platforms")
(synopsis "Handling container platform type")
(description
"Package platforms provides a toolkit for normalizing, matching and
specifying container platforms.")
(license license:asl2.0)))
(define-public go-github-com-coocood-freecache
(package
(name "go-github-com-coocood-freecache")