1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 19:10:49 +02:00

gnu: Add go-github-com-moby-sys-user.

* gnu/packages/golang-xyz.scm (go-github-com-moby-sys-user): New variable.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Change-Id: I6b679a92a09716de337e9dd824f79aca2bf4abbb
This commit is contained in:
David Thompson 2025-06-02 12:31:19 +02:00 committed by Ludovic Courtès
parent a16b83b9d2
commit 4f2ed6e6b1
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -12195,6 +12195,33 @@ about OS mounts as seen by the current process is available from
@code{/proc/self/mountinfo}.")
(license license:asl2.0)))
(define-public go-github-com-moby-sys-user
(package
(name "go-github-com-moby-sys-user")
(version "0.3.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/moby/sys")
(commit (go-version->git-ref version
#:subdir "user"))))
(file-name (git-file-name name version))
(sha256
(base32 "1clr9x412gr1cq3jxf9lxblh9pkf8c42gz57wr14miy0nqsimx7j"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/moby/sys/user"
#:unpack-path "github.com/moby/sys"))
(propagated-inputs (list go-golang-org-x-sys))
(home-page "https://github.com/moby/sys")
(synopsis "Unix user and group access from Go")
(description
"This Go library provides facilities to access @file{/etc/passwd} and
related files.")
(license license:asl2.0)))
(define-public go-github-com-moby-sys-userns
(package
(name "go-github-com-moby-sys-userns")