Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 29 lines 628 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5}: 6 7stdenv.mkDerivation rec { 8 version = "1.0.7"; 9 pname = "libaal"; 10 11 src = fetchurl { 12 url = "mirror://sourceforge/reiser4/${pname}-${version}.tar.gz"; 13 sha256 = "sha256-fIVohp2PVCaNaQRVJ4zfW8mukiiqM3BgF8Vwu9qrmJE="; 14 }; 15 16 preInstall = '' 17 substituteInPlace Makefile --replace ./run-ldconfig true 18 ''; 19 20 enableParallelBuilding = true; 21 22 meta = { 23 homepage = "http://www.namesys.com/"; 24 description = "Support library for Reiser4"; 25 license = lib.licenses.gpl2; 26 maintainers = with lib.maintainers; [ mglolenstine ]; 27 platforms = with lib.platforms; linux; 28 }; 29}