2010-02-02 16:49:07 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2006-09-11 08:45:01 +00:00
|
|
|
|
2009-08-07 15:26:13 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-05-01 18:19:59 +00:00
|
|
|
name = "apr-1.5.2";
|
2010-02-10 13:30:57 +00:00
|
|
|
|
2006-09-11 08:45:01 +00:00
|
|
|
src = fetchurl {
|
2009-08-07 15:26:13 +00:00
|
|
|
url = "mirror://apache/apr/${name}.tar.bz2";
|
2015-05-01 18:19:59 +00:00
|
|
|
sha256 = "0ypn51xblix5ys9xy7da3ngdydip0qqh9rdq8nz54w9aq8lys0vx";
|
2008-02-05 11:41:49 +00:00
|
|
|
};
|
|
|
|
|
2015-02-04 07:11:44 +00:00
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [ ./is-this-a-compiler-bug.patch ];
|
2012-06-06 21:44:20 +00:00
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-03 14:41:51 +00:00
|
|
|
outputBin = "dev";
|
2013-06-13 09:32:55 +00:00
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
configureFlagsArray+=("--with-installbuilddir=$dev/share/build")
|
|
|
|
'';
|
|
|
|
|
2010-02-02 16:49:07 +00:00
|
|
|
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
|
2013-07-31 13:02:23 +00:00
|
|
|
stdenv.lib.optional (stdenv.system == "i686-cygwin") "ac_cv_header_windows_h=no";
|
2012-07-02 19:30:58 +00:00
|
|
|
|
2013-06-13 09:32:55 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-10-03 14:41:51 +00:00
|
|
|
meta = with stdenv.lib; {
|
2008-02-05 11:41:49 +00:00
|
|
|
homepage = http://apr.apache.org/;
|
|
|
|
description = "The Apache Portable Runtime library";
|
2015-10-03 14:41:51 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.eelco ];
|
2006-09-11 08:45:01 +00:00
|
|
|
};
|
|
|
|
}
|