me
/
guix
Archived
1
0
Fork 0

gnu: Add go-github-com-hanwen-go-fuse-v2.

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

Signed-off-by: Leo Famulari <leo@famulari.name>
master
Felix Lechner 2023-03-05 12:54:47 -08:00 committed by Leo Famulari
parent 871a0fe5a3
commit 8810be06f2
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 28 additions and 0 deletions

View File

@ -1158,6 +1158,34 @@ form that bypasses network filtering, allowing the application to work on
networks where it would otherwise be blocked or heavily throttled.") networks where it would otherwise be blocked or heavily throttled.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-hanwen-go-fuse-v2
(let ((commit "915cf5413cdef5370ae3f953f8eb4cd9ac176d5c")
(revision "0"))
(package
(name "go-github-com-hanwen-go-fuse-v2")
(version (git-version "2.2.0" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/hanwen/go-fuse")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1ik0yvs9m40vxccpb0rpxc22fyqmcgyysc7w0yl9kn3jyr6qa1d5"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/hanwen/go-fuse/v2"))
(native-inputs (list
go-golang-org-x-sys
go-golang-org-x-sync
go-github-com-kylelemons-godebug))
(home-page "https://github.com/hanwen/go-fuse")
(synopsis "Go bindings for FUSE filesystems")
(description
"This is a repository containing Go bindings for writing FUSE file systems.")
(license license:bsd-3))))
(define-public go-github-com-kataras-golog (define-public go-github-com-kataras-golog
(package (package
(name "go-github-com-kataras-golog") (name "go-github-com-kataras-golog")