depot/third_party/nixpkgs/pkgs/tools/filesystems/reiser4progs/default.nix
Default email d87170d3f2 Project import generated by Copybara.
GitOrigin-RevId: 967d40bec14be87262b21ab901dbace23b7365db
2021-07-18 23:22:44 +02:00

31 lines
726 B
Nix

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