sharlatan pushed a commit to branch go-team
in repository guix.
commit f817f651b13d4849b6a0aeb34a7988e5b8cc67fd
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jan 2 22:53:07 2025 +0000
gnu: Add go-github-com-containerd-btrfs-v2.
* gnu/packages/golang-xyz.scm (go-github-com-containerd-btrfs-v2): New
variable.
Change-Id: I47c8158ad6cb24e9dd56c02b2d64d498491848e4
---
gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index d32a6b7f4a..9f30573725 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -2566,6 +2566,33 @@ locale can be selected.")
the Go language features.")
(license license:asl2.0)))
+(define-public go-github-com-containerd-btrfs-v2
+ (package
+ (name "go-github-com-containerd-btrfs-v2")
+ (version "2.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/containerd/btrfs")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "05xwni5gvg5nka1n6lbx7mah0iykz2jw7ca010r33djcn4i8r5bs"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/containerd/btrfs/v2"))
+ (propagated-inputs
+ (list go-golang-org-x-sys))
+ (home-page "https://github.com/containerd/btrfs")
+ (synopsis "Btrfs bindings for Go")
+ (description
+ "Package btrfs provides bindings for working with btrfs partitions from
+Go. The Linux kernel headers are only required on compilation time, not on
+run time.")
+ (license license:asl2.0)))
+
(define-public go-github-com-containerd-cgroups
(package
(name "go-github-com-containerd-cgroups")