mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
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:
parent
094c52f66d
commit
1e4cb4f0eb
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user