guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 6f222a8edbc0421bf17cdb65e4e9364107222e4b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Jun 22 22:30:34 2026 +0100
gnu: Add go-github-com-containerd-zfs.
* gnu/packages/golang-xyz.scm (go-github-com-containerd-zfs): New variable.
---
gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 07195fd7a1..64e383300c 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -7078,6 +7078,31 @@ repositories.")
"This package provides a ZFS snapshotter plugin for containerd.")
(license license:asl2.0)))
+(define-public go-github-com-containerd-zfs
+ (package
+ (inherit go-github-com-containerd-zfs-v2)
+ (name "go-github-com-containerd-zfs")
+ (version "1.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/containerd/zfs")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1936pkjm71c4x40ww7p8pnwcdcg06j34m1v5zlxywwsl434avscm"))))
+ (arguments
+ (list
+ #:skip-build? #t ;source only package
+ #:tests? #f
+ #:import-path "github.com/containerd/zfs"))
+ (propagated-inputs
+ (list ;; go-github-com-containerd-continuity ;cycles
+ go-github-com-containerd-log
+ go-github-com-containerd-plugin
+ go-github-com-mistifyio-go-zfs-v3))))
+
;; XXX: This package was moved; please update your references to use
;; go.podman.io/image/v5 instead. New development of this project happens on
;; https://github.com/containers/container-libs.