about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/reiser4progs/default.nix
blob: 59d8e8aa43893164b17187775b9ad86a701fecfe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{stdenv, fetchurl, libaal}:

let version = "1.2.1"; in
stdenv.mkDerivation rec {
  name = "reiser4progs-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/reiser4/reiser4-utils/${name}.tar.gz";
    sha256 = "03vdqvpyd48wxrpqpb9kg76giaffw9b8k334kr4wc0zxgybknhl7";
  };

  buildInputs = [libaal];

  hardeningDisable = [ "format" ];

  preConfigure = ''
    substituteInPlace configure --replace " -static" ""
  '';

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

  meta = {
    inherit version;
    homepage = http://www.namesys.com/;
    description = "Reiser4 utilities";
    platforms = stdenv.lib.platforms.linux;
  };
}