sharlatan pushed a commit to branch go-team
in repository guix.

commit c8d05c6c9f644f0acd3c76f46a8b6fbae1fc8c6f
Author: Sharlatan Hellseher <sharlata...@gmail.com>
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 330989b762..5e6532ba35 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -1160,6 +1160,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")

Reply via email to