1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 11:30:44 +02:00

gnu: Add go-github-com-detailyang-go-fallocate.

* gnu/packages/golang-xyz.scm (go-github-com-detailyang-go-fallocate): New variable.

Change-Id: I95a7cecfceb6254e414a7b842297a9ada811ceb7
This commit is contained in:
Sharlatan Hellseher 2024-12-20 20:54:01 +00:00
parent 74199eac39
commit c55e45f787
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -2803,6 +2803,30 @@ more complicated parallel cases.")
encoding/decoding. It has no dependencies.") encoding/decoding. It has no dependencies.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-detailyang-go-fallocate
(package
(name "go-github-com-detailyang-go-fallocate")
(version "0.0.0-20180908115635-432fa640bd2e")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/detailyang/go-fallocate")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "1yvgkj5i43ihagdwg70vjgrhwf2mjsbyv2xwd6znsdwav6qpcdnw"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/detailyang/go-fallocate"))
(home-page "https://github.com/detailyang/go-fallocate")
(synopsis "Syscal @code{fallocate} implementation in Golang")
(description
"This package implements syscal @code{fallocate} by wrapping standard Go
@code{os.SEEK_SET}.")
(license license:expat)))
(define-public go-github-com-dgraph-io-badger (define-public go-github-com-dgraph-io-badger
(package (package
(name "go-github-com-dgraph-io-badger") (name "go-github-com-dgraph-io-badger")