mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: sshfs: Update to 3.7.3.
* gnu/packages/linux.scm (sshfs): Update to 3.7.3. [build-system]: Replace gnu-build-system with meson-build-system. [native-inputs]: Add dependencies to generate man page. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
b8b8df9122
commit
d921cf8d27
1 changed files with 11 additions and 6 deletions
|
@ -3472,20 +3472,25 @@ (define-public unionfs-fuse/static
|
|||
(define-public sshfs
|
||||
(package
|
||||
(name "sshfs")
|
||||
(version "2.10")
|
||||
(version "3.7.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/libfuse/sshfs/releases/"
|
||||
"download/sshfs-" version "/sshfs-" version
|
||||
".tar.gz"))
|
||||
".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"00fir2iykdx11g8nv5gijg0zjrp2g3ldypnv0yi6lq3h5pg5v13h"))))
|
||||
(build-system gnu-build-system)
|
||||
"169fkilv060afgp9h7hvsbkg02bd1y77kmx06x0s7q1cvmxww62j"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
;; XXX: tests are skipped: FUSE kernel module does not seem to be loaded
|
||||
'(#:tests? #f))
|
||||
(inputs
|
||||
(list fuse glib))
|
||||
(list fuse-3 glib))
|
||||
(native-inputs
|
||||
(list pkg-config))
|
||||
(list pkg-config
|
||||
;; man page
|
||||
python-docutils))
|
||||
(home-page "https://github.com/libfuse/sshfs")
|
||||
(synopsis "Mount remote file systems over SSH")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue