2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2008-02-04 06:37:15 -08:00
|
|
|
|
2014-08-29 05:32:10 -07:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "1.0.6";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "libaal";
|
2008-02-04 06:37:15 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://sourceforge/reiser4/${pname}-${version}.tar.gz";
|
2014-08-29 05:32:10 -07:00
|
|
|
sha256 = "176f2sns6iyxv3h9zyirdinjwi05gdak48zqarhib2s38rvm98di";
|
2008-02-04 06:37:15 -08:00
|
|
|
};
|
|
|
|
|
2017-11-15 18:02:44 -08:00
|
|
|
patches = [ ./libaal-1.0.6-glibc-2.26.patch ];
|
|
|
|
|
2008-02-04 06:37:15 -08:00
|
|
|
preInstall = ''
|
|
|
|
substituteInPlace Makefile --replace ./run-ldconfig true
|
|
|
|
'';
|
|
|
|
|
2017-11-15 18:02:44 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2008-02-04 06:37:15 -08:00
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.namesys.com/";
|
2008-02-04 06:37:15 -08:00
|
|
|
description = "Support library for Reiser4";
|
2021-01-21 09:00:13 -08:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
maintainers = with lib.maintainers; [ ];
|
|
|
|
platforms = with lib.platforms; linux;
|
2008-02-04 06:37:15 -08:00
|
|
|
};
|
|
|
|
}
|