summary refs log tree commit diff
path: root/pkgs/os-specific/linux/reiser4progs/default.nix
blob: 235b2b8381baa1983171bb2ee10d9969fd3f2cf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{stdenv, fetchurl, libaal}:

stdenv.mkDerivation {
  name = "reiser4progs-1.0.6";

  src = fetchurl {
    url = http://chichkin_i.zelnet.ru/namesys/reiser4progs-1.0.6.tar.gz;
    sha256 = "0x6m6px19hz54r8q4wwpf437qmqh44c5ddw9846isr64zs2rpld0";
  };

  buildInputs = [libaal];

  preInstall = ''
    substituteInPlace Makefile --replace ./run-ldconfig true
  '';

  meta = {
    homepage = http://www.namesys.com/;
    description = "Reiser4 utilities";
  };
}