2014-08-29 14:32:10 +02:00
|
|
|
{ stdenv, fetchurl }:
|
2008-02-04 15:37:15 +01:00
|
|
|
|
2014-08-29 14:32:10 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "1.0.6";
|
|
|
|
name = "libaal-${version}";
|
2008-02-04 15:37:15 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-08-29 14:32:10 +02:00
|
|
|
url = "mirror://sourceforge/reiser4/${name}.tar.gz";
|
|
|
|
sha256 = "176f2sns6iyxv3h9zyirdinjwi05gdak48zqarhib2s38rvm98di";
|
2008-02-04 15:37:15 +01:00
|
|
|
};
|
|
|
|
|
2017-11-16 03:02:44 +01:00
|
|
|
patches = [ ./libaal-1.0.6-glibc-2.26.patch ];
|
|
|
|
|
2008-02-04 15:37:15 +01:00
|
|
|
preInstall = ''
|
|
|
|
substituteInPlace Makefile --replace ./run-ldconfig true
|
|
|
|
'';
|
|
|
|
|
2017-11-16 03:02:44 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2008-02-04 15:37:15 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.namesys.com/;
|
|
|
|
description = "Support library for Reiser4";
|
2014-08-29 14:32:10 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2008-02-04 15:37:15 +01:00
|
|
|
};
|
|
|
|
}
|