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 {
|
2009-10-12 10:57:27 -07:00
|
|
|
name = "apr-1.3.9";
|
2008-02-05 03:41:49 -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";
|
2009-10-12 10:57:27 -07:00
|
|
|
sha256 = "1qicxnk62d9mjza8vch2wxy4xlq8sa76chwi5cp6bs4cyj9s61ap";
|
2008-02-05 03:41:49 -08: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
|
|
|
|
stdenv.lib.optionalString (stdenv.system == "i686-cygwin") "ac_cv_header_windows_h=no";
|
|
|
|
|
2008-02-05 03:41:49 -08:00
|
|
|
meta = {
|
|
|
|
homepage = http://apr.apache.org/;
|
|
|
|
description = "The Apache Portable Runtime library";
|
2006-09-11 01:45:01 -07:00
|
|
|
};
|
|
|
|
}
|