diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-18 13:51:48 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-26 16:50:12 +0100 |
commit | 5762e6ced0cf919978a3cbea2dd1593e098dc71c (patch) | |
tree | e5a24818103b740e7fa7f1c6c46f8a42ab400e7b /gnu/packages/golang-xyz.scm | |
parent | 2b7ca2ad220d0427703f6c14d071713e7b990939 (diff) |
gnu: Add go-github-com-anacrolix-fuse.
* gnu/packages/golang-xyz.scm (go-github-com-anacrolix-fuse): New variable.
Change-Id: Iba2c430f2f158e1a4d0975fcc4940d367e103662
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 512969fd0c..af92b67304 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -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") |