guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 0cafb055632888674650bb6e7c739b48fdb5104c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jul 9 08:09:07 2025 +0100
gnu: Add go-github-com-moby-sys-capability.
* gnu/packages/golang-xyz.scm (go-github-com-moby-sys-capability): New
variable.
Change-Id: Ia4e11d0171c1bb896f7b70ad0b8a2ad623815f24
---
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 58a5213036..8ea803583e 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -12892,6 +12892,33 @@ parsing.")
"This directory contains documents about Docker Image Specification
v1.X.")
(license license:asl2.0)))
+(define-public go-github-com-moby-sys-capability
+ (package
+ (name "go-github-com-moby-sys-capability")
+ (version "0.4.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/moby/sys")
+ (commit (go-version->git-ref version
+ #:subdir "capability"))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1140wqx5mlr9adk74k6bsswqm6dhps02cwv6k8j6nssd7ln3v514"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/moby/sys/capability"
+ #:unpack-path "github.com/moby/sys"))
+ (home-page "https://github.com/moby/sys")
+ (synopsis "Basic primitives to work with Linux capabilities")
+ (description
+ "Package capability provides utilities for manipulating POSIX
+capabilities. It's a maintained fork of
+https://github.com/syndtr/gocapability.")
+ (license license:bsd-2)))
+
(define-public go-github-com-moby-sys-mountinfo
(package
(name "go-github-com-moby-sys-mountinfo")