2010-02-02 19:49:07 +03:00
|
|
|
{ stdenv, fetchurl }:
|
2006-09-11 12:45:01 +04:00
|
|
|
|
2009-08-07 19:26:13 +04:00
|
|
|
stdenv.mkDerivation rec {
|
2010-08-09 00:29:23 +04:00
|
|
|
name = "apr-1.4.2";
|
2010-02-10 16:30:57 +03:00
|
|
|
|
2006-09-11 12:45:01 +04:00
|
|
|
src = fetchurl {
|
2009-08-07 19:26:13 +04:00
|
|
|
url = "mirror://apache/apr/${name}.tar.bz2";
|
2010-08-09 00:29:23 +04:00
|
|
|
sha256 = "14akizp9aq8c2qk8bj5a6n3s8hsy356prp911cmrvl4l0rqcl5r0";
|
2008-02-05 14:41:49 +03:00
|
|
|
};
|
|
|
|
|
2010-02-02 19:49:07 +03:00
|
|
|
configureFlags =
|
2010-02-10 16:30:57 +03:00
|
|
|
# Don't use accept4 because it's only supported on Linux >= 2.6.28.
|
2010-02-10 16:37:28 +03:00
|
|
|
[ "apr_cv_accept4=no" ]
|
2010-02-02 19:49:07 +03:00
|
|
|
# Including the Windows headers breaks unistd.h.
|
|
|
|
# Based on ftp://sourceware.org/pub/cygwin/release/libapr1/libapr1-1.3.8-2-src.tar.bz2
|
2010-02-10 16:30:57 +03:00
|
|
|
++ stdenv.lib.optional (stdenv.system == "i686-cygwin") "ac_cv_header_windows_h=no";
|
2010-02-02 19:49:07 +03:00
|
|
|
|
2008-02-05 14:41:49 +03:00
|
|
|
meta = {
|
|
|
|
homepage = http://apr.apache.org/;
|
|
|
|
description = "The Apache Portable Runtime library";
|
2006-09-11 12:45:01 +04:00
|
|
|
};
|
|
|
|
}
|