1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

apr: don't manually move apr-1-config

Also refactor meta.
This commit is contained in:
Vladimír Čunát 2015-10-03 16:41:51 +02:00
parent 9d19ac7d0d
commit 1858a39c9a

View file

@ -11,6 +11,7 @@ stdenv.mkDerivation rec {
patches = stdenv.lib.optionals stdenv.isDarwin [ ./is-this-a-compiler-bug.patch ];
outputs = [ "dev" "out" ];
outputBin = "dev";
preConfigure =
''
@ -24,17 +25,10 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
postInstall =
''
mkdir $dev/bin $dev/lib
mv $out/bin/apr-1-config $dev/bin
mv $out/lib/pkgconfig $dev/lib
'';
meta = {
meta = with stdenv.lib; {
homepage = http://apr.apache.org/;
description = "The Apache Portable Runtime library";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.eelco ];
platforms = platforms.all;
maintainers = [ maintainers.eelco ];
};
}