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

28 lines
597 B
Nix
Raw Normal View History

{stdenv, fetchurl, libaal}:
2015-04-19 00:12:52 +00:00
let version = "1.0.9"; in
stdenv.mkDerivation rec {
name = "reiser4progs-${version}";
src = fetchurl {
2015-04-19 00:12:52 +00:00
url = "mirror://sourceforge/reiser4/reiser4-utils/${name}.tar.gz";
sha256 = "0d6djyd7wjvzbqj738b2z4jr5c2s30g8q8xygipyi0007g42gc7z";
};
buildInputs = [libaal];
2015-04-19 00:12:52 +00:00
preConfigure = ''
substituteInPlace configure --replace " -static" ""
'';
preInstall = ''
substituteInPlace Makefile --replace ./run-ldconfig true
'';
meta = {
2015-04-19 00:12:52 +00:00
inherit version;
homepage = http://www.namesys.com/;
description = "Reiser4 utilities";
};
}