nixpkgs/pkgs/development/libraries/libaal/default.nix
Mateusz Kowalczyk 1451a52a38 Remove myself (fuuzetsu) from maintainer lists
I haven't been doing any maintenance for a long time now and not only
do I get notified, it also creates a fake impression that all these
packages had at least one maintainer when in practice they had none.
2019-12-05 16:29:48 +09:00

28 lines
673 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "1.0.6";
pname = "libaal";
src = fetchurl {
url = "mirror://sourceforge/reiser4/${pname}-${version}.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; [ ];
platforms = with stdenv.lib.platforms; linux;
};
}