2010-02-02 16:49:07 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2006-09-11 09:45:01 +01:00
|
|
|
|
2009-08-07 16:26:13 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-09-21 01:48:47 +01:00
|
|
|
name = "apr-1.6.5";
|
2010-02-10 13:30:57 +00:00
|
|
|
|
2006-09-11 09:45:01 +01:00
|
|
|
src = fetchurl {
|
2009-08-07 16:26:13 +01:00
|
|
|
url = "mirror://apache/apr/${name}.tar.bz2";
|
2018-09-21 01:48:47 +01:00
|
|
|
sha256 = "01d1n1ql66bxsjx0wyzazmkqdqdmr0is6a7lwyy5kzy4z7yajz56";
|
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 22:44:20 +01:00
|
|
|
|
2018-08-08 19:29:39 +01:00
|
|
|
# This test needs the net
|
|
|
|
postPatch = ''
|
|
|
|
rm test/testsock.*
|
|
|
|
'';
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-03 15:41:51 +01:00
|
|
|
outputBin = "dev";
|
2013-06-13 10:32:55 +01: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
|
2018-08-20 20:11:29 +01:00
|
|
|
stdenv.lib.optional (stdenv.hostPlatform.system == "i686-cygwin") "ac_cv_header_windows_h=no";
|
2012-07-02 20:30:58 +01:00
|
|
|
|
2013-06-13 10:32:55 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-10-03 15:41:51 +01: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 15:41:51 +01:00
|
|
|
platforms = platforms.all;
|
2018-09-30 10:02:17 +01:00
|
|
|
license = licenses.asl20;
|
2015-10-03 15:41:51 +01:00
|
|
|
maintainers = [ maintainers.eelco ];
|
2006-09-11 09:45:01 +01:00
|
|
|
};
|
|
|
|
}
|