summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-06-22 22:30:34 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-07-23 21:15:00 +0100
commit35723566885c8e94b8cd7ea34dfbc8edd4439910 (patch)
tree5846caaed11cbcdb60158f8a5ec55f64acf056e0 /gnu
parent65e792aba2e772ef44e86567613e6cbbf53f7fef (diff)
gnu: Add go-github-com-containerd-zfs.
* gnu/packages/golang-xyz.scm (go-github-com-containerd-zfs): New variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index daf369c955c..4b258e40acf 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -7495,6 +7495,31 @@ repositories.")
7495 "This package provides a ZFS snapshotter plugin for containerd.") 7495 "This package provides a ZFS snapshotter plugin for containerd.")
7496 (license license:asl2.0))) 7496 (license license:asl2.0)))
7497 7497
7498(define-public go-github-com-containerd-zfs
7499 (package
7500 (inherit go-github-com-containerd-zfs-v2)
7501 (name "go-github-com-containerd-zfs")
7502 (version "1.2.0")
7503 (source
7504 (origin
7505 (method git-fetch)
7506 (uri (git-reference
7507 (url "https://github.com/containerd/zfs")
7508 (commit (string-append "v" version))))
7509 (file-name (git-file-name name version))
7510 (sha256
7511 (base32 "1936pkjm71c4x40ww7p8pnwcdcg06j34m1v5zlxywwsl434avscm"))))
7512 (arguments
7513 (list
7514 #:skip-build? #t ;source only package
7515 #:tests? #f
7516 #:import-path "github.com/containerd/zfs"))
7517 (propagated-inputs
7518 (list ;; go-github-com-containerd-continuity ;cycles
7519 go-github-com-containerd-log
7520 go-github-com-containerd-plugin
7521 go-github-com-mistifyio-go-zfs-v3))))
7522
7498;; XXX: This package was moved; please update your references to use 7523;; XXX: This package was moved; please update your references to use
7499;; go.podman.io/image/v5 instead. New development of this project happens on 7524;; go.podman.io/image/v5 instead. New development of this project happens on
7500;; https://github.com/containers/container-libs. 7525;; https://github.com/containers/container-libs.