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

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;
}

View file

@ -363,6 +363,11 @@ rec {
curl = if stdenv ? curl then stdenv.curl else (assert false; null);
curlftpfs = import ../tools/networking/curlftpfs {
inherit fetchurl stdenv fuse curl pkgconfig zlib;
inherit (gtkLibs) glib;
};
dnsmasq = import ../tools/networking/dnsmasq {
# TODO i18n can be installed as well, implement it?
inherit fetchurl stdenv;