nixpkgs/pkgs/tools/filesystems/reiser4progs/default.nix
Eelco Dolstra c726012afe * Refactoring: move most filesystem utilities / FUSE filesystems to
tools/filesystems.  Previously they were all over the place.

svn path=/nixpkgs/trunk/; revision=18809
2009-12-04 15:39:49 +00:00

22 lines
460 B
Nix

{stdenv, fetchurl, libaal}:
stdenv.mkDerivation {
name = "reiser4progs-1.0.6";
src = fetchurl {
url = http://chichkin_i.zelnet.ru/namesys/reiser4progs-1.0.6.tar.gz;
sha256 = "0x6m6px19hz54r8q4wwpf437qmqh44c5ddw9846isr64zs2rpld0";
};
buildInputs = [libaal];
preInstall = ''
substituteInPlace Makefile --replace ./run-ldconfig true
'';
meta = {
homepage = http://www.namesys.com/;
description = "Reiser4 utilities";
};
}