mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
3835526a94
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
28 lines
680 B
Nix
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;
|
|
};
|
|
}
|