1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 02:20:53 +02:00

gnu: Add go-github-com-anacrolix-fuse.

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

Change-Id: Iba2c430f2f158e1a4d0975fcc4940d367e103662
This commit is contained in:
Sharlatan Hellseher 2025-02-18 13:51:48 +00:00
parent 2b7ca2ad22
commit 5762e6ced0
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1162,6 +1162,39 @@ use case for these are for command-line applications but alternate progress
bar writers can be supplied for alternate environments.")
(license license:expat)))
(define-public go-github-com-anacrolix-fuse
(package
(name "go-github-com-anacrolix-fuse")
(version "0.3.1")
(source
(origin
(method git-fetch)
(uri (git-reference
;; It's an alternative and maintained fork
;; https://github.com/bazil/fuse
;; -> https://github.com/zegl/fuse
;; ->
(url "https://github.com/anacrolix/fuse")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0rlzcdgv7s3ywmhapp35qgi0p5cz8acw589n7hr918hq30dp7w9z"))))
(build-system go-build-system)
(arguments
(list
#:tests? #f ; tests require fuse mount
#:import-path "github.com/anacrolix/fuse"))
(propagated-inputs
(list go-github-com-anacrolix-envpprof
go-github-com-tv42-httpunix
go-golang-org-x-sys))
(home-page "https://github.com/anacrolix/fuse")
(synopsis "FUSE implementation in Golang")
(description
"Package fuse enables writing FUSE file systems on Linux, OS X, and
@code{FreeBSD}.")
(license license:bsd-3)))
(define-public go-github-com-anacrolix-generics
(package
(name "go-github-com-anacrolix-generics")