base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / li / libaal / package.nix
blobd5b0b95f959925b99276120842f9d31366a33f2f
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   version = "1.0.7";
5   pname = "libaal";
7   src = fetchurl {
8     url = "mirror://sourceforge/reiser4/${pname}-${version}.tar.gz";
9     sha256 = "sha256-fIVohp2PVCaNaQRVJ4zfW8mukiiqM3BgF8Vwu9qrmJE=";
10   };
12   preInstall = ''
13     substituteInPlace Makefile --replace ./run-ldconfig true
14   '';
16   enableParallelBuilding = true;
18   meta = {
19     homepage = "http://www.namesys.com/";
20     description = "Support library for Reiser4";
21     license = lib.licenses.gpl2;
22     maintainers = with lib.maintainers; [ mglolenstine ];
23     platforms = with lib.platforms; linux;
24   };