* Refactoring: move most filesystem utilities / FUSE filesystems to

tools/filesystems.  Previously they were all over the place.

svn path=/nixpkgs/trunk/; revision=18809
This commit is contained in:
Eelco Dolstra
2009-12-04 15:39:49 +00:00
parent 064aae6461
commit c726012afe
25 changed files with 63 additions and 114 deletions
@@ -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];
}