1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 03:50:45 +02:00

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

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

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Change-Id: If11b81717b9749dbf561075f34c16dcd5d0c47ff
This commit is contained in:
David Thompson 2025-06-02 13:49:32 +02:00 committed by Ludovic Courtès
parent 4f2ed6e6b1
commit 10e37d62f3
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-sequential
(package
(name "go-github-com-moby-sys-sequential")
(version "0.6.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/moby/sys")
(commit (go-version->git-ref version
#:subdir "sequential"))))
(file-name (git-file-name name version))
(sha256
(base32 "1i1phx1kk9qa4jf1i1nl23d3f6k9fn2w46274cl76cqw9hjqg868"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/moby/sys/sequential"
#:unpack-path "github.com/moby/sys"))
(propagated-inputs (list go-golang-org-x-sys))
(home-page "https://github.com/moby/sys")
(synopsis "Go bindings to the Windows sequential file interface")
(description
"Package sequential provides a set of functions for managing sequential files on
Windows.")
(license license:asl2.0)))
(define-public go-github-com-moby-sys-user
(package
(name "go-github-com-moby-sys-user")