2010-02-02 08:49:07 -08:00
|
|
|
{ stdenv, fetchurl }:
|
2006-09-11 01:45:01 -07:00
|
|
|
|
2009-08-07 08:26:13 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2014-04-28 05:45:54 -07:00
|
|
|
name = "apr-1.5.1";
|
2010-02-10 05:30:57 -08:00
|
|
|
|
2006-09-11 01:45:01 -07:00
|
|
|
src = fetchurl {
|
2009-08-07 08:26:13 -07:00
|
|
|
url = "mirror://apache/apr/${name}.tar.bz2";
|
2014-04-28 05:45:54 -07:00
|
|
|
sha256 = "1b4qw686bwjn19iyb0lg918q23xxd6s2gnyczhjq992d3m1vwjp9";
|
2008-02-05 03:41:49 -08:00
|
|
|
};
|
|
|
|
|
2015-02-03 23:11:44 -08:00
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [ ./is-this-a-compiler-bug.patch ];
|
2012-06-06 14:44:20 -07:00
|
|
|
|
2010-02-02 08:49:07 -08: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 06:02:23 -07:00
|
|
|
stdenv.lib.optional (stdenv.system == "i686-cygwin") "ac_cv_header_windows_h=no";
|
2012-07-02 12:30:58 -07:00
|
|
|
|
2013-12-10 03:55:55 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2008-02-05 03:41:49 -08:00
|
|
|
meta = {
|
|
|
|
homepage = http://apr.apache.org/;
|
|
|
|
description = "The Apache Portable Runtime library";
|
2013-12-10 03:55:55 -08:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2006-09-11 01:45:01 -07:00
|
|
|
};
|
|
|
|
}
|