Added curlftpfs which is for mounting ftp's with fuse.
svn path=/nixpkgs/trunk/; revision=9520
This commit is contained in:
parent
b724614087
commit
48df959548
14
pkgs/tools/networking/ftpfuse/default.nix
Normal file
14
pkgs/tools/networking/ftpfuse/default.nix
Normal 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;
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user