nixpkgs/pkgs/development/libraries/libaal/default.nix
Orivej Desh 3835526a94 libaal: fix build with glibc 2.26
I have extracted this patch by Jan Engelhardt from [1] because I have not found
any direct or persistent link to it.

[1] http://tube.opensuse.org/repositories/filesystems/SLE_11_SP4/src/libaal-1.0.6-107.1.src.rpm

Tracking issue: #31696
2017-11-16 02:02:44 +00:00

28 lines
680 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "1.0.6";
name = "libaal-${version}";
src = fetchurl {
url = "mirror://sourceforge/reiser4/${name}.tar.gz";
sha256 = "176f2sns6iyxv3h9zyirdinjwi05gdak48zqarhib2s38rvm98di";
};
patches = [ ./libaal-1.0.6-glibc-2.26.patch ];
preInstall = ''
substituteInPlace Makefile --replace ./run-ldconfig true
'';
enableParallelBuilding = true;
meta = {
homepage = http://www.namesys.com/;
description = "Support library for Reiser4";
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
platforms = with stdenv.lib.platforms; linux;
};
}