Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libaal / default.nix
blobe3c960681c5f437c00b625203426804c4a68354f
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   version = "1.0.6";
5   pname = "libaal";
7   src = fetchurl {
8     url = "mirror://sourceforge/reiser4/${pname}-${version}.tar.gz";
9     sha256 = "176f2sns6iyxv3h9zyirdinjwi05gdak48zqarhib2s38rvm98di";
10   };
12   patches = [ ./libaal-1.0.6-glibc-2.26.patch ];
14   preInstall = ''
15     substituteInPlace Makefile --replace ./run-ldconfig true
16   '';
18   enableParallelBuilding = true;
20   meta = {
21     homepage = "http://www.namesys.com/";
22     description = "Support library for Reiser4";
23     license = lib.licenses.gpl2;
24     maintainers = with lib.maintainers; [ ];
25     platforms = with lib.platforms; linux;
26   };