nixpkgs/pkgs/tools/filesystems/reiser4progs/default.nix
2019-08-17 10:54:38 +00:00

33 lines
751 B
Nix

{stdenv, fetchurl, libaal}:
let version = "1.2.1"; in
stdenv.mkDerivation rec {
pname = "reiser4progs";
inherit version;
src = fetchurl {
url = "mirror://sourceforge/reiser4/reiser4-utils/${pname}-${version}.tar.gz";
sha256 = "03vdqvpyd48wxrpqpb9kg76giaffw9b8k334kr4wc0zxgybknhl7";
};
buildInputs = [libaal];
hardeningDisable = [ "format" ];
preConfigure = ''
substituteInPlace configure --replace " -static" ""
'';
preInstall = ''
substituteInPlace Makefile --replace ./run-ldconfig true
'';
meta = with stdenv.lib; {
inherit version;
homepage = https://sourceforge.net/projects/reiser4/;
description = "Reiser4 utilities";
license = licenses.gpl2;
platforms = platforms.linux;
};
}