summary refs log tree commit diff
path: root/pkgs/tools/filesystems/reiserfsprogs/default.nix
blob: f036e0a08bc8aac2d35439d8f0a6f80a930b9531 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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";
  };
}