* Reiser4 stuff.

svn path=/nixpkgs/trunk/; revision=10498
This commit is contained in:
Eelco Dolstra
2008-02-04 14:37:15 +00:00
parent 7cc6713bdd
commit 9f2711c674
4 changed files with 57 additions and 8 deletions

View File

@@ -0,0 +1,19 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libaal-1.0.5";
src = fetchurl {
url = http://chichkin_i.zelnet.ru/namesys/libaal-1.0.5.tar.gz;
sha256 = "109f464hxwms90mpczc7h7lmrdlcmlglabkzh86h25xrlxxdn6pz";
};
preInstall = ''
substituteInPlace Makefile --replace ./run-ldconfig true
'';
meta = {
homepage = http://www.namesys.com/;
description = "Support library for Reiser4";
};
}