at 18.03-beta 27 lines 680 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 version = "1.0.6"; 5 name = "libaal-${version}"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/reiser4/${name}.tar.gz"; 9 sha256 = "176f2sns6iyxv3h9zyirdinjwi05gdak48zqarhib2s38rvm98di"; 10 }; 11 12 patches = [ ./libaal-1.0.6-glibc-2.26.patch ]; 13 14 preInstall = '' 15 substituteInPlace Makefile --replace ./run-ldconfig true 16 ''; 17 18 enableParallelBuilding = true; 19 20 meta = { 21 homepage = http://www.namesys.com/; 22 description = "Support library for Reiser4"; 23 license = stdenv.lib.licenses.gpl2; 24 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 25 platforms = with stdenv.lib.platforms; linux; 26 }; 27}