* 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,18 @@
args: with args;
stdenv.mkDerivation {
name = "reiserfsprogs-3.6.19-patched";
src = fetchurl {
url = http://chichkin_i.zelnet.ru/namesys/reiserfsprogs-3.6.19.tar.gz;
sha256 = "1gv8gr0l5l2j52540y2wj9c9h7fn0r3vabykf95748ydmr9jr1n0";
};
patches = [./headers-fix.patch ./verbose-flag-ignore-for-compatibility.patch ];
meta = {
homepage = http://www.namesys.com/;
description = "Reiserfs utilities";
license = "GPL-2";
};
}