diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-02 22:53:07 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:47:36 +0000 |
commit | 519f6436362a3c723c94347a9f6eba9e8cb2d44e (patch) | |
tree | 9a63cf92173d8ffa74a04192f8438d05e7fde6dd /gnu/packages/golang-xyz.scm | |
parent | 6d0f8af0f43cb501bd706f8dee9f83cb151bb1db (diff) |
gnu: Add go-github-com-containerd-btrfs-v2.
* gnu/packages/golang-xyz.scm (go-github-com-containerd-btrfs-v2): New variable.
Change-Id: I47c8158ad6cb24e9dd56c02b2d64d498491848e4
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 149b710583..b4fc25931d 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") |