1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-20 09:10:30 +02:00

gnu: fuse: Update to 3.18.1.

* gnu/packages/linux.scm (fuse): Update to 3.18.1.
[source]: Use tar.gz.
(fuse-3.18): Remove.
* gnu/packages/file-systems.scm (disorderfs)[inputs]: Use unversioned fuse.
This commit is contained in:
Vagrant Cascadian
2026-02-17 16:39:59 -08:00
parent a88f947b24
commit 4fcbcab2d9
2 changed files with 4 additions and 19 deletions

View File

@@ -1225,7 +1225,7 @@ files mistakenly overwritten or destroyed just a few seconds ago.")
(native-inputs
(list pkg-config))
(inputs
(list fuse-3.18 attr))
(list fuse attr))
(arguments
`(#:phases (modify-phases %standard-phases
(delete 'configure)) ; no configure script

View File

@@ -4926,16 +4926,16 @@ or kill them altogether.")
(define-public fuse
(package
(name "fuse")
(version "3.10.5")
(version "3.18.1")
(source (origin
(method url-fetch)
(uri
(string-append "https://github.com/libfuse/libfuse/releases/"
"download/fuse-" version
"/fuse-" version ".tar.xz"))
"/fuse-" version ".tar.gz"))
(sha256
(base32
"0rlnnsiw614qcmgy8xz67044gqc1pbvvf2yxjv44lh27bm487qmj"))))
"0b1jp5gp2gv40gv6cvmv86rcr4l0mdh050qbvnxl0xcwya45qffx"))))
(build-system meson-build-system)
(inputs
(list bash-minimal util-linux))
@@ -4996,21 +4996,6 @@ user-space processes.")
(license (list license:lgpl2.1 ; library
license:gpl2+)))) ; command-line utilities
(define-public fuse-3.18
(package
(inherit fuse)
(name "fuse")
(version "3.18.1")
(source (origin
(method url-fetch)
(uri
(string-append "https://github.com/libfuse/libfuse/releases/"
"download/fuse-" version
"/fuse-" version ".tar.gz"))
(sha256
(base32
"0b1jp5gp2gv40gv6cvmv86rcr4l0mdh050qbvnxl0xcwya45qffx"))))))
(define-public fuse-2
(package
(inherit fuse)