1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-17 12:30:38 +02:00

gnu: go-github-com-hanwen-fuse: Move to golang-xyz.

* gnu/packages/file-systems.scm (go-github-com-hanwen-fuse): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: I8f8fccc89e1c930d7085fe61f4c962cb1f2c128c
This commit is contained in:
Sharlatan Hellseher 2024-12-22 13:46:16 +00:00
parent 088bdaed4c
commit 844056347e
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 25 additions and 25 deletions

View file

@ -4560,6 +4560,31 @@ underneath and returns only matching files or direcories, depending on the
configuration.")
(license license:expat)))
(define-public go-github-com-hanwen-fuse
(package
(name "go-github-com-hanwen-fuse")
(version "2.0.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/hanwen/go-fuse")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1y44d08fxyis99s6jxdr6dbbw5kv3wb8lkhq3xmr886i4w41lz03"))))
(build-system go-build-system)
(arguments
(list #:import-path "github.com/hanwen/go-fuse"))
(propagated-inputs
(list go-golang-org-x-sys))
(home-page "https://github.com/hanwen/go-fuse")
(synopsis "FUSE bindings for Go")
(description
"This package provides Go native bindings for the FUSE kernel module.")
(license license:bsd-3)))
(define-public go-github-com-hanwen-go-fuse-v2
(package
(name "go-github-com-hanwen-go-fuse-v2")