sharlatan pushed a commit to branch go-team
in repository guix.
commit c32fc02fe0984c61d2727d330c97a3edd25fdd10
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jan 9 21:45:26 2025 +0000
gnu: Add go-github-com-containerd-plugin.
* gnu/packages/golang-xyz.scm (go-github-com-containerd-plugin): New
variable.
Change-Id: Id8be82abc8d01ce57749ee2068b6be7fde10eff0
---
gnu/packages/golang-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 8204c7806e..15e1c87d7a 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -3197,6 +3197,32 @@ loggers through a context, and attaching context to the
logger.")
specifying container platforms.")
(license license:asl2.0)))
+(define-public go-github-com-containerd-plugin
+ (package
+ (name "go-github-com-containerd-plugin")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/containerd/plugin")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1gzm8h4yaparji0llqqfxl68gv56hwlybz4rgwnr54fhr029mpzp"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/containerd/plugin"))
+ (propagated-inputs
+ (list go-github-com-opencontainers-image-spec))
+ (home-page "https://github.com/containerd/plugin")
+ (synopsis "Registering and managing typed plugins with dependencies")
+ (description
+ "This package provides a common plugin interface across containerd
+repositories.")
+ (license license:asl2.0)))
+
(define-public go-github-com-coocood-freecache
(package
(name "go-github-com-coocood-freecache")