* Latest FUSE, sshfs.

svn path=/nixpkgs/trunk/; revision=9964
This commit is contained in:
Eelco Dolstra
2007-12-24 13:27:07 +00:00
parent 9849c4fd13
commit 5c6cb19b3d
2 changed files with 16 additions and 6 deletions
+8 -3
View File
@@ -1,10 +1,15 @@
{stdenv, fetchurl, pkgconfig, glib, fuse}:
stdenv.mkDerivation {
name = "sshfs-fuse-1.7";
name = "sshfs-fuse-1.9";
src = fetchurl {
url = mirror://sourceforge/fuse/sshfs-fuse-1.7.tar.gz;
md5 = "e91a2fed1da952a375798408dc6e41a0";
url = mirror://sourceforge/fuse/sshfs-fuse-1.9.tar.gz;
sha256 = "10ishsghdwd6a1cd36gp26qpch6z8d6wjs7aw8vs0ffnvrs4hdza";
};
buildInputs = [pkgconfig glib fuse];
meta = {
homepage = http://fuse.sourceforge.net/sshfs.html;
description = "FUSE-based filesystem that allows remote filesystems to be mounted over SSH";
};
}