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