2013-12-31 14:00:21 +00:00
|
|
|
{ stdenv, fetchurl, makeWrapper, apr, expat, gnused
|
2012-07-02 20:38:50 +01:00
|
|
|
, sslSupport ? true, openssl
|
2014-01-31 20:05:37 +00:00
|
|
|
, bdbSupport ? false, db
|
2015-06-05 14:50:14 +01:00
|
|
|
, ldapSupport ? !stdenv.isCygwin, openldap
|
2014-11-26 23:16:50 +00:00
|
|
|
, libiconv
|
FreeBSD: apr-util, cyrus-sasl, berkeley db, glib, gnutls, kerberos, libelf-freebsd, openldap, serf, guile, tet, shishi, gawk, gnugrep
2015-11-28 00:46:00 +00:00
|
|
|
, cyrus_sasl, autoreconfHook
|
2006-09-11 10:17:28 +01:00
|
|
|
}:
|
|
|
|
|
2012-07-02 20:38:50 +01:00
|
|
|
assert sslSupport -> openssl != null;
|
2014-01-31 20:05:37 +00:00
|
|
|
assert bdbSupport -> db != null;
|
2012-07-02 20:38:50 +01:00
|
|
|
assert ldapSupport -> openldap != null;
|
2006-09-11 10:17:28 +01:00
|
|
|
|
2015-06-15 12:16:27 +01:00
|
|
|
with stdenv.lib;
|
2013-12-31 14:00:21 +00:00
|
|
|
|
2009-08-07 16:26:13 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-09-24 20:03:40 +01:00
|
|
|
name = "apr-util-1.5.4";
|
2012-07-02 20:38:50 +01:00
|
|
|
|
2006-09-11 10:17:28 +01:00
|
|
|
src = fetchurl {
|
2009-08-07 16:26:13 +01:00
|
|
|
url = "mirror://apache/apr/${name}.tar.bz2";
|
2014-09-24 20:03:40 +01:00
|
|
|
sha256 = "0bn81pfscy9yjvbmyx442svf43s6dhrdfcsnkpxz43fai5qk5kx6";
|
2006-09-11 10:17:28 +01:00
|
|
|
};
|
2012-07-02 20:38:50 +01:00
|
|
|
|
2016-01-05 08:42:56 +00:00
|
|
|
patches = optional stdenv.isFreeBSD ./include-static-dependencies.patch;
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-18 12:29:23 +01:00
|
|
|
outputBin = "dev";
|
|
|
|
|
2016-01-05 08:42:56 +00:00
|
|
|
buildInputs = optional stdenv.isFreeBSD autoreconfHook;
|
2011-04-09 15:24:25 +01:00
|
|
|
|
2016-04-16 17:49:30 +01:00
|
|
|
configureFlags = [ "--with-apr=${apr.dev}" "--with-expat=${expat.dev}" ]
|
2016-01-05 08:42:56 +00:00
|
|
|
++ optional (!stdenv.isCygwin) "--with-crypto"
|
2016-04-16 18:44:32 +01:00
|
|
|
++ optional sslSupport "--with-openssl=${openssl.dev}"
|
2016-01-05 08:42:56 +00:00
|
|
|
++ optional bdbSupport "--with-berkeley-db=${db}"
|
|
|
|
++ optional ldapSupport "--with-ldap=ldap"
|
|
|
|
++ optionals stdenv.isCygwin
|
|
|
|
[ "--without-pgsql" "--without-sqlite2" "--without-sqlite3"
|
|
|
|
"--without-freetds" "--without-berkeley-db" "--without-crypto" ]
|
|
|
|
;
|
2013-06-13 10:32:55 +01:00
|
|
|
|
2014-11-26 23:16:50 +00:00
|
|
|
propagatedBuildInputs = [ makeWrapper apr expat libiconv ]
|
2013-12-31 14:00:21 +00:00
|
|
|
++ optional sslSupport openssl
|
2014-01-31 20:05:37 +00:00
|
|
|
++ optional bdbSupport db
|
FreeBSD: apr-util, cyrus-sasl, berkeley db, glib, gnutls, kerberos, libelf-freebsd, openldap, serf, guile, tet, shishi, gawk, gnugrep
2015-11-28 00:46:00 +00:00
|
|
|
++ optional ldapSupport openldap
|
|
|
|
++ optional stdenv.isFreeBSD cyrus_sasl;
|
2013-12-31 14:00:21 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
2015-10-18 12:29:23 +01:00
|
|
|
for f in $out/lib/*.la $out/lib/apr-util-1/*.la; do
|
2016-09-22 15:53:09 +01:00
|
|
|
substituteInPlace $f \
|
|
|
|
--replace "${expat.dev}/lib" "${expat.out}/lib" \
|
|
|
|
--replace "${openssl.dev}/lib" "${openssl.out}/lib"
|
2015-10-18 12:29:23 +01:00
|
|
|
done
|
2016-09-22 15:53:09 +01:00
|
|
|
|
|
|
|
# Give apr1 access to sed for runtime invocations.
|
2015-10-18 12:29:23 +01:00
|
|
|
wrapProgram $dev/bin/apu-1-config --prefix PATH : "${gnused}/bin"
|
2013-12-31 14:00:21 +00:00
|
|
|
'';
|
2012-07-02 20:38:50 +01:00
|
|
|
|
2013-01-14 13:38:00 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2008-02-05 11:41:49 +00:00
|
|
|
passthru = {
|
2012-07-02 20:38:50 +01:00
|
|
|
inherit sslSupport bdbSupport ldapSupport;
|
2008-02-05 11:41:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://apr.apache.org/;
|
|
|
|
description = "A companion library to APR, the Apache Portable Runtime";
|
2014-09-24 20:03:40 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2008-02-05 11:41:49 +00:00
|
|
|
};
|
|
|
|
}
|