From c726012afe1dbd13da7ab15381e3de2867bc8af5 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 4 Dec 2009 15:39:49 +0000 Subject: * Refactoring: move most filesystem utilities / FUSE filesystems to tools/filesystems. Previously they were all over the place. svn path=/nixpkgs/trunk/; revision=18809 --- pkgs/tools/filesystems/curlftpfs/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 pkgs/tools/filesystems/curlftpfs/default.nix (limited to 'pkgs/tools/filesystems/curlftpfs') diff --git a/pkgs/tools/filesystems/curlftpfs/default.nix b/pkgs/tools/filesystems/curlftpfs/default.nix new file mode 100644 index 00000000000..6d90cae5dc5 --- /dev/null +++ b/pkgs/tools/filesystems/curlftpfs/default.nix @@ -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]; +} -- cgit 1.4.1