* Added sshfs-fuse, a program for mounting remote filesystems via
ssh. No remote support required, everything is done via ssh's builtin sftp protocol. svn path=/nixpkgs/trunk/; revision=7543
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
{stdenv, fetchurl, pkgconfig, glib, fuse}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "sshfs-fuse-1.7";
|
||||
src = fetchurl {
|
||||
url = http://mesh.dl.sourceforge.net/sourceforge/fuse/sshfs-fuse-1.7.tar.gz;
|
||||
md5 = "e91a2fed1da952a375798408dc6e41a0";
|
||||
};
|
||||
buildInputs = [pkgconfig glib fuse];
|
||||
}
|
||||
Reference in New Issue
Block a user