mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
gnu: Add go-bazil-org-fuse.
* gnu/packages/golang-xyz.scm (go-bazil-org-fuse): New variable. Change-Id: I933d90dca50110f53831febc81d587c14973934f
This commit is contained in:
parent
330a133b85
commit
1f6c4f226d
1 changed files with 31 additions and 0 deletions
|
@ -68,6 +68,7 @@ (define-module (gnu packages golang-xyz)
|
|||
#:use-module (gnu packages golang-check)
|
||||
#:use-module (gnu packages golang-compression)
|
||||
#:use-module (gnu packages golang-crypto)
|
||||
#:use-module (gnu packages golang-web)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages specifications))
|
||||
|
||||
|
@ -83,6 +84,36 @@ (define-module (gnu packages golang-xyz)
|
|||
;;; Libraries:
|
||||
;;;
|
||||
|
||||
(define-public go-bazil-org-fuse
|
||||
(package
|
||||
(name "go-bazil-org-fuse")
|
||||
(version "0.0.0-20200117225306-7b5117fecadc")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/bazil/fuse")
|
||||
(commit (go-version->git-ref version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1bw2lp1nijpqp729k808xkhwmb8nn7igsv51hvv9jw74q805qg2f"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
;; Tests require root access to mount file system.
|
||||
#:tests? #f
|
||||
#:go go-1.19
|
||||
#:import-path "bazil.org/fuse"))
|
||||
(propagated-inputs
|
||||
(list go-github-com-tv42-httpunix go-golang-org-x-sys))
|
||||
(home-page "https://bazil.org/fuse")
|
||||
(synopsis "FUSE filesystems in Golang")
|
||||
(description
|
||||
"Package fuse enables writing FUSE file systems. It is a from-scratch
|
||||
implementation of the kernel-userspace communication protocol, and does not
|
||||
use the C library from the project called FUSE.")
|
||||
(license (list license:bsd-2 license:bsd-3 license:hpnd))))
|
||||
|
||||
(define-public go-code-cloudfoundry-org-bytefmt
|
||||
(package
|
||||
(name "go-code-cloudfoundry-org-bytefmt")
|
||||
|
|
Loading…
Reference in a new issue