Added curlftpfs really this time

svn path=/nixpkgs/trunk/; revision=9521
This commit is contained in:
Wouter den Breejen 2007-10-25 14:45:00 +00:00
parent 48df959548
commit f90b297ea1

View File

@ -0,0 +1,10 @@
{stdenv, fetchurl, fuse, curl, pkgconfig, glib, zlib}:
stdenv.mkDerivation {
name = "curlftpfs-0.9.1";
src = fetchurl {
url = mirror://sourceforge/curlftpfs/curlftpfs-0.9.1.tar.gz;
sha256 = "9f50cdf02c0dc31ef148410345b2374d294d8853d2dae11775e36b0268ad227d";
};
buildInputs = [fuse curl pkgconfig glib zlib];
}