* 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:
Eelco Dolstra
2007-01-06 17:36:03 +00:00
parent 2ecbdbe5eb
commit 045cdc51e8
2 changed files with 15 additions and 0 deletions
@@ -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];
}