sshfs: link sshfs to mount.sshfs

mount.fuse is not able to find sshfs.
So calling
  $ mount -t sshfs user@host:path mount/point
will search for mount.sshfs to do the mount.

svn path=/nixpkgs/trunk/; revision=28443
This commit is contained in:
David Guibert 2011-08-09 20:38:55 +00:00
parent 094c52f66d
commit 1e4cb4f0eb

View File

@ -9,6 +9,10 @@ stdenv.mkDerivation rec {
};
buildInputs = [ pkgconfig glib fuse ];
postInstall = ''
ensureDir $out/sbin
ln -sf $out/bin/sshfs $out/sbin/mount.sshfs
'';
meta = {
homepage = http://fuse.sourceforge.net/sshfs.html;