Added curlftpfs which is for mounting ftp's with fuse.

svn path=/nixpkgs/trunk/; revision=9520
This commit is contained in:
Wouter den Breejen
2007-10-25 14:07:50 +00:00
parent b724614087
commit 48df959548
2 changed files with 19 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{stdenv, fetchurl, pkgconfig, glib, fuse, perl}:
stdenv.mkDerivation {
name = "fuseftp-0.8";
src = fetchurl {
url = http://perl.thiesen.org/fuseftp/fuseftp-0.8.tar.gz;
sha256 = "7abc552eead7934fe1cb7c8cde3b83dd9d01c4a812db1a7d9ab8d9e0860923dc";
};
buildInputs = [pkgconfig glib fuse perl];
builder = ./builder.sh;
inherit perl;
}