gnu: Rename sshfs-fuse to sshfs.
authorswedebugia <swedebugia@riseup.net>
Mon, 14 Jan 2019 20:03:20 +0000 (21:03 +0100)
committerLeo Famulari <leo@famulari.name>
Tue, 15 Jan 2019 15:45:45 +0000 (10:45 -0500)
* gnu/packages/linux.scm (sshfs): New variable.
(sshfs-fuse): Mark as superseded.

Signed-off-by: Leo Famulari <leo@famulari.name>
gnu/packages/linux.scm

index 8a74cb7..a1e5d00 100644 (file)
@@ -1811,9 +1811,9 @@ UnionFS-FUSE additionally supports copy-on-write.")
                #t))))))
     (inputs `(("fuse" ,fuse-static)))))
 
-(define-public sshfs-fuse
+(define-public sshfs
   (package
-    (name "sshfs-fuse")
+    (name "sshfs")
     (version "2.10")
     (source (origin
               (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.")
     (license license:gpl2+)))
 
+(define-public sshfs-fuse
+  (package (inherit sshfs)
+    (name "sshfs-fuse")
+    (properties `((superseded . ,sshfs)))))
+
 (define-public archivemount
   (package
     (name "archivemount")