{ stdenv, fetchurl }: stdenv.mkDerivation rec { name = "apr-1.4.5"; src = fetchurl { url = "mirror://apache/apr/${name}.tar.bz2"; md5 = "8b53f5a5669d0597f2da889a2f576eb6"; }; configureFlags = # Don't use accept4 because it's only supported on Linux >= 2.6.28. [ "apr_cv_accept4=no" ] # 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"; meta = { homepage = http://apr.apache.org/; description = "The Apache Portable Runtime library"; }; }