sharlatan pushed a commit to branch go-team
in repository guix.
commit bebee3396184955acc6e784ccad9c345b3130f21
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Feb 18 13:51:48 2025 +0000
gnu: Add go-github-com-anacrolix-fuse.
* gnu/packages/golang-xyz.scm (go-github-com-anacrolix-fuse): New variable.
Change-Id: Iba2c430f2f158e1a4d0975fcc4940d367e103662
---
gnu/packages/golang-xyz.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index b72593b0e8..f4608be048 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -1159,6 +1159,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")