2021-01-11 07:54:33 +00:00
|
|
|
{lib, stdenv, fetchurl, libaal}:
|
2008-02-04 14:37:15 +00:00
|
|
|
|
2020-07-07 09:16:22 +01:00
|
|
|
let version = "2.0.1"; in
|
2015-04-19 01:12:52 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "reiser4progs";
|
|
|
|
inherit version;
|
2008-02-04 14:37:15 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-13 22:52:01 +01:00
|
|
|
url = "mirror://sourceforge/reiser4/reiser4-utils/${pname}-${version}.tar.gz";
|
2020-07-07 09:16:22 +01:00
|
|
|
sha256 = "1r7m95mnp6xmp1j5k99jhmz6g9y2qq7cghlmdxsfbr3xviqfs45d";
|
2008-02-04 14:37:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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" ""
|
|
|
|
'';
|
|
|
|
|
2008-02-04 14:37:15 +00:00
|
|
|
preInstall = ''
|
|
|
|
substituteInPlace Makefile --replace ./run-ldconfig true
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-04-19 01:12:52 +01:00
|
|
|
inherit version;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://sourceforge.net/projects/reiser4/";
|
2008-02-04 14:37:15 +00:00
|
|
|
description = "Reiser4 utilities";
|
2018-09-07 21:32:12 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2008-02-04 14:37:15 +00:00
|
|
|
};
|
|
|
|
}
|