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