mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: fuse: Update to 2.9.6.
* gnu/packages/linux.scm (fuse): Update to 2.9.6. [home-page]: Update home-page URL.
This commit is contained in:
parent
c99bf9b2ea
commit
0e9bc883b4
1 changed files with 6 additions and 9 deletions
|
@ -1293,18 +1293,15 @@ (define-public iotop
|
||||||
(define-public fuse
|
(define-public fuse
|
||||||
(package
|
(package
|
||||||
(name "fuse")
|
(name "fuse")
|
||||||
(version "2.9.5")
|
(version "2.9.6")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (let ((version-with-underscores
|
(uri (string-append "https://github.com/libfuse/libfuse/releases/"
|
||||||
(string-join (string-split version #\.) "_")))
|
"download/fuse-" version
|
||||||
(string-append
|
"/fuse-" version ".tar.gz"))
|
||||||
"https://github.com/libfuse/libfuse/"
|
|
||||||
"releases/download/fuse_" version-with-underscores
|
|
||||||
"/fuse-" version ".tar.gz")))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1dfvbi1p57svbv2sfnbqwpnsk219spvjnlapf35azhgzqlf3g7sp"))))
|
"0szi2vlsjxg03y4ji51jks34p269jqj5ify6l0ajsqq6f6y8pd0c"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs `(("util-linux" ,util-linux)))
|
(inputs `(("util-linux" ,util-linux)))
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -1340,7 +1337,7 @@ (define-public fuse
|
||||||
(("-DFUSERMOUNT_DIR=[[:graph:]]+")
|
(("-DFUSERMOUNT_DIR=[[:graph:]]+")
|
||||||
"-DFUSERMOUNT_DIR=\\\"/var/empty\\\"")))
|
"-DFUSERMOUNT_DIR=\\\"/var/empty\\\"")))
|
||||||
%standard-phases)))
|
%standard-phases)))
|
||||||
(home-page "http://fuse.sourceforge.net/")
|
(home-page "https://github.com/libfuse/libfuse")
|
||||||
(synopsis "Support file systems implemented in user space")
|
(synopsis "Support file systems implemented in user space")
|
||||||
(description
|
(description
|
||||||
"As a consequence of its monolithic design, file system code for Linux
|
"As a consequence of its monolithic design, file system code for Linux
|
||||||
|
|
Loading…
Reference in a new issue