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

33 lines
751 B
Nix
Raw Normal View History

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