forked from mirrors/nixpkgs
bf414c9d4f
- there were many easy merge conflicts - cc-wrapper needed nontrivial changes Many other problems might've been created by interaction of the branches, but stdenv and a few other packages build fine now.
41 lines
1 KiB
Nix
41 lines
1 KiB
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "apr-1.5.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://apache/apr/${name}.tar.bz2";
|
|
sha256 = "1b4qw686bwjn19iyb0lg918q23xxd6s2gnyczhjq992d3m1vwjp9";
|
|
};
|
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [ ./is-this-a-compiler-bug.patch ];
|
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
preConfigure =
|
|
''
|
|
configureFlagsArray+=("--with-installbuilddir=$dev/share/build")
|
|
'';
|
|
|
|
configureFlags =
|
|
# Including the Windows headers breaks unistd.h.
|
|
# Based on ftp://sourceware.org/pub/cygwin/release/libapr1/libapr1-1.3.8-2-src.tar.bz2
|
|
stdenv.lib.optional (stdenv.system == "i686-cygwin") "ac_cv_header_windows_h=no";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postInstall =
|
|
''
|
|
mkdir $dev/bin $dev/lib
|
|
mv $out/bin/apr-1-config $dev/bin
|
|
mv $out/lib/pkgconfig $dev/lib
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://apr.apache.org/;
|
|
description = "The Apache Portable Runtime library";
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
};
|
|
}
|