gnu: Rename sshfs-fuse to sshfs.

* gnu/packages/linux.scm (sshfs): New variable.
(sshfs-fuse): Mark as superseded.

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
swedebugia 2019-01-14 21:03:20 +01:00 committed by Leo Famulari
parent 5327e912a8
commit 357b9f9d71
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 7 additions and 2 deletions

View File

@ -1811,9 +1811,9 @@ UnionFS-FUSE additionally supports copy-on-write.")
#t)))))) #t))))))
(inputs `(("fuse" ,fuse-static))))) (inputs `(("fuse" ,fuse-static)))))
(define-public sshfs-fuse (define-public sshfs
(package (package
(name "sshfs-fuse") (name "sshfs")
(version "2.10") (version "2.10")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
@ -1838,6 +1838,11 @@ up: on the server side there's nothing to do; on the client side mounting the
file system is as easy as logging into the server with an SSH client.") file system is as easy as logging into the server with an SSH client.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public sshfs-fuse
(package (inherit sshfs)
(name "sshfs-fuse")
(properties `((superseded . ,sshfs)))))
(define-public archivemount (define-public archivemount
(package (package
(name "archivemount") (name "archivemount")