nixpkgs/pkgs/tools/filesystems/reiser4progs/default.nix

33 lines
751 B
Nix
Raw Normal View History

{stdenv, fetchurl, libaal}:
2020-01-07 16:15:44 +00:00
let version = "2.0.0"; in
2015-04-19 01:12:52 +01:00
stdenv.mkDerivation rec {
2019-08-13 22:52:01 +01:00
pname = "reiser4progs";
inherit version;
src = fetchurl {
2019-08-13 22:52:01 +01:00
url = "mirror://sourceforge/reiser4/reiser4-utils/${pname}-${version}.tar.gz";
2020-01-07 16:15:44 +00:00
sha256 = "00kx9prz3d5plp1hn4xdkkd99cw42sanlsjnjhj0fsrlmi9yfs8n";
};
buildInputs = [libaal];
2016-08-04 10:09:27 +01:00
hardeningDisable = [ "format" ];
2015-04-19 01:12:52 +01:00
preConfigure = ''
substituteInPlace configure --replace " -static" ""
'';
preInstall = ''
substituteInPlace Makefile --replace ./run-ldconfig true
'';
meta = with stdenv.lib; {
2015-04-19 01:12:52 +01:00
inherit version;
homepage = https://sourceforge.net/projects/reiser4/;
description = "Reiser4 utilities";
license = licenses.gpl2;
platforms = platforms.linux;
};
}