2017-02-27 17:41:35 +01:00
|
|
|
{ stdenv, fetchurl, openssl, nettle, expat, libevent }:
|
2010-02-09 08:28:32 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-12-23 06:49:51 +01:00
|
|
|
name = "unbound-${version}";
|
2017-06-13 22:05:56 +02:00
|
|
|
version = "1.6.3";
|
2010-02-09 08:28:32 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://unbound.net/downloads/${name}.tar.gz";
|
2017-06-13 22:05:56 +02:00
|
|
|
sha256 = "0pw4m4z5qspsagxzbjb61xq5bhd57amw26xqvqzi6b8d3mf6azjc";
|
2010-02-09 08:28:32 +01:00
|
|
|
};
|
2014-12-23 06:49:51 +01:00
|
|
|
|
2015-10-05 10:53:30 +02:00
|
|
|
outputs = [ "out" "lib" "man" ]; # "dev" would only split ~20 kB
|
|
|
|
|
2017-02-27 17:41:35 +01:00
|
|
|
buildInputs = [ openssl nettle expat libevent ];
|
2015-01-18 01:35:30 +01:00
|
|
|
|
2014-12-23 06:49:51 +01:00
|
|
|
configureFlags = [
|
2015-10-05 15:58:37 +02:00
|
|
|
"--with-ssl=${openssl.dev}"
|
2016-04-16 18:49:30 +02:00
|
|
|
"--with-libexpat=${expat.dev}"
|
2015-10-05 15:58:37 +02:00
|
|
|
"--with-libevent=${libevent.dev}"
|
2014-12-23 06:49:51 +01:00
|
|
|
"--localstatedir=/var"
|
2015-04-21 02:50:39 +02:00
|
|
|
"--sysconfdir=/etc"
|
2016-03-06 13:50:41 +01:00
|
|
|
"--sbindir=\${out}/bin"
|
2016-02-15 04:27:49 +01:00
|
|
|
"--enable-pie"
|
|
|
|
"--enable-relro-now"
|
2014-12-23 06:49:51 +01:00
|
|
|
];
|
2010-02-09 08:28:32 +01:00
|
|
|
|
2015-04-21 02:50:39 +02:00
|
|
|
installFlags = [ "configfile=\${out}/etc/unbound/unbound.conf" ];
|
|
|
|
|
2017-02-28 22:30:09 +01:00
|
|
|
preFixup = stdenv.lib.optionalString stdenv.isLinux
|
2017-02-27 17:41:35 +01:00
|
|
|
# Build libunbound again, but only against nettle instead of openssl.
|
|
|
|
# This avoids gnutls.out -> unbound.lib -> openssl.out.
|
2017-02-28 22:30:09 +01:00
|
|
|
# There was some problem with this on Darwin; let's not complicate non-Linux.
|
2017-02-27 17:41:35 +01:00
|
|
|
''
|
|
|
|
configureFlags="$configureFlags --with-nettle=${nettle.dev} --with-libunbound-only"
|
|
|
|
configurePhase
|
|
|
|
buildPhase
|
|
|
|
installPhase
|
|
|
|
''
|
|
|
|
# get rid of runtime dependencies on $dev outputs
|
|
|
|
+ ''substituteInPlace "$lib/lib/libunbound.la" ''
|
2015-10-15 13:57:38 +02:00
|
|
|
+ stdenv.lib.concatMapStrings
|
|
|
|
(pkg: " --replace '-L${pkg.dev}/lib' '-L${pkg.out}/lib' ")
|
2017-02-27 17:41:35 +01:00
|
|
|
buildInputs;
|
2015-10-05 10:53:30 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Validating, recursive, and caching DNS resolver";
|
2015-10-05 10:53:30 +02:00
|
|
|
license = licenses.bsd3;
|
2016-10-22 20:16:20 +02:00
|
|
|
homepage = https://www.unbound.net;
|
2016-02-08 02:20:00 +01:00
|
|
|
maintainers = with maintainers; [ ehmry fpletz ];
|
2014-04-20 17:16:36 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-02-09 08:28:32 +01:00
|
|
|
};
|
|
|
|
}
|