2020-05-07 12:12:38 +01:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchurl
|
|
|
|
, openssl
|
|
|
|
, nettle
|
|
|
|
, expat
|
|
|
|
, libevent
|
2021-09-19 15:04:30 +01:00
|
|
|
, libsodium
|
|
|
|
, protobufc
|
|
|
|
, hiredis
|
2020-05-07 12:12:38 +01:00
|
|
|
, dns-root-data
|
|
|
|
, pkg-config
|
2021-04-24 07:59:55 +01:00
|
|
|
, makeWrapper
|
2021-09-19 15:04:30 +01:00
|
|
|
, symlinkJoin
|
2021-10-16 02:29:42 +01:00
|
|
|
, bison
|
|
|
|
, nixosTests
|
2020-05-07 12:12:38 +01:00
|
|
|
#
|
|
|
|
# By default unbound will not be built with systemd support. Unbound is a very
|
|
|
|
# commmon dependency. The transitive dependency closure of systemd also
|
|
|
|
# contains unbound.
|
|
|
|
# Since most (all?) (lib)unbound users outside of the unbound daemon usage do
|
|
|
|
# not need the systemd integration it is likely best to just default to no
|
|
|
|
# systemd integration.
|
|
|
|
# For the daemon use-case, that needs to notify systemd, use `unbound-with-systemd`.
|
|
|
|
#
|
|
|
|
, withSystemd ? false
|
|
|
|
, systemd ? null
|
2021-01-01 17:54:33 +00:00
|
|
|
# optionally support DNS-over-HTTPS as a server
|
|
|
|
, withDoH ? false
|
2021-09-19 15:04:30 +01:00
|
|
|
, withECS ? false
|
|
|
|
, withDNSCrypt ? false
|
|
|
|
, withDNSTAP ? false
|
|
|
|
, withTFO ? false
|
|
|
|
, withRedis ? false
|
2021-11-28 14:41:19 +00:00
|
|
|
# Avoid .lib depending on openssl.out
|
|
|
|
# The build gets a little hacky, so in some cases we disable this approach.
|
|
|
|
, withSlimLib ? stdenv.isLinux && !stdenv.hostPlatform.isMusl && !withDNSTAP
|
2021-01-01 17:54:33 +00:00
|
|
|
, libnghttp2
|
2020-05-07 12:12:38 +01:00
|
|
|
}:
|
2010-02-09 07:28:32 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "unbound";
|
2021-08-15 16:54:29 +01:00
|
|
|
version = "1.13.2";
|
2010-02-09 07:28:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-23 22:08:21 +01:00
|
|
|
url = "https://nlnetlabs.nl/downloads/unbound/unbound-${version}.tar.gz";
|
2021-08-15 16:54:29 +01:00
|
|
|
sha256 = "sha256-ChO1R/O5KgJrXr0EI/VMmR5XGAN/2fckRYF/agQOGoM=";
|
2010-02-09 07:28:32 +00:00
|
|
|
};
|
2014-12-23 05:49:51 +00:00
|
|
|
|
2015-10-05 09:53:30 +01:00
|
|
|
outputs = [ "out" "lib" "man" ]; # "dev" would only split ~20 kB
|
|
|
|
|
2021-04-24 07:59:55 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
2021-01-01 17:54:33 +00:00
|
|
|
buildInputs = [ openssl nettle expat libevent ]
|
|
|
|
++ lib.optionals withSystemd [ pkg-config systemd ]
|
|
|
|
++ lib.optionals withDoH [ libnghttp2 ];
|
2015-01-18 00:35:30 +00:00
|
|
|
|
2014-12-23 05:49:51 +00:00
|
|
|
configureFlags = [
|
2015-10-05 14:58:37 +01:00
|
|
|
"--with-ssl=${openssl.dev}"
|
2016-04-16 17:49:30 +01:00
|
|
|
"--with-libexpat=${expat.dev}"
|
2015-10-05 14:58:37 +01:00
|
|
|
"--with-libevent=${libevent.dev}"
|
2014-12-23 05:49:51 +00:00
|
|
|
"--localstatedir=/var"
|
2015-04-21 01:50:39 +01:00
|
|
|
"--sysconfdir=/etc"
|
2016-03-06 12:50:41 +00:00
|
|
|
"--sbindir=\${out}/bin"
|
2017-06-16 04:11:56 +01:00
|
|
|
"--with-rootkey-file=${dns-root-data}/root.key"
|
2016-02-15 03:27:49 +00:00
|
|
|
"--enable-pie"
|
|
|
|
"--enable-relro-now"
|
2021-01-15 09:19:50 +00:00
|
|
|
] ++ lib.optional stdenv.hostPlatform.isStatic [
|
2020-04-12 21:03:02 +01:00
|
|
|
"--disable-flto"
|
2020-05-07 12:12:38 +01:00
|
|
|
] ++ lib.optionals withSystemd [
|
|
|
|
"--enable-systemd"
|
2021-01-01 17:54:33 +00:00
|
|
|
] ++ lib.optionals withDoH [
|
|
|
|
"--with-libnghttp2=${libnghttp2.dev}"
|
2021-09-19 15:04:30 +01:00
|
|
|
] ++ lib.optionals withECS [
|
|
|
|
"--enable-subnet"
|
|
|
|
] ++ lib.optionals withDNSCrypt [
|
|
|
|
"--enable-dnscrypt"
|
|
|
|
"--with-libsodium=${symlinkJoin { name = "libsodium-full"; paths = [ libsodium.dev libsodium.out ]; }}"
|
|
|
|
] ++ lib.optionals withDNSTAP [
|
|
|
|
"--enable-dnstap"
|
|
|
|
"--with-protobuf-c=${protobufc}"
|
|
|
|
] ++ lib.optionals withTFO [
|
|
|
|
"--enable-tfo-client"
|
|
|
|
"--enable-tfo-server"
|
|
|
|
] ++ lib.optionals withRedis [
|
|
|
|
"--enable-cachedb"
|
|
|
|
"--with-libhiredis=${hiredis}"
|
2014-12-23 05:49:51 +00:00
|
|
|
];
|
2010-02-09 07:28:32 +00:00
|
|
|
|
2021-10-18 15:13:14 +01:00
|
|
|
PROTOC_C = lib.optionalString withDNSTAP "${protobufc}/bin/protoc-c";
|
2021-09-19 15:04:30 +01:00
|
|
|
|
2021-06-02 00:23:06 +01:00
|
|
|
# Remove references to compile-time dependencies that are included in the configure flags
|
|
|
|
postConfigure = let
|
|
|
|
inherit (builtins) storeDir;
|
|
|
|
in ''
|
|
|
|
sed -E '/CONFCMDLINE/ s;${storeDir}/[a-z0-9]{32}-;${storeDir}/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-;g' -i config.h
|
|
|
|
'';
|
|
|
|
|
2021-10-16 02:29:42 +01:00
|
|
|
checkInputs = [ bison ];
|
|
|
|
|
2021-11-11 12:23:12 +00:00
|
|
|
doCheck = true;
|
2021-10-16 02:29:42 +01:00
|
|
|
|
2015-04-21 01:50:39 +01:00
|
|
|
installFlags = [ "configfile=\${out}/etc/unbound/unbound.conf" ];
|
|
|
|
|
2019-12-07 23:40:22 +00:00
|
|
|
postInstall = ''
|
|
|
|
make unbound-event-install
|
2021-04-24 07:59:55 +01:00
|
|
|
wrapProgram $out/bin/unbound-control-setup \
|
|
|
|
--prefix PATH : ${lib.makeBinPath [ openssl ]}
|
2019-12-07 23:40:22 +00:00
|
|
|
'';
|
|
|
|
|
2021-11-28 14:41:19 +00:00
|
|
|
preFixup = lib.optionalString withSlimLib
|
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.
|
|
|
|
''
|
|
|
|
configureFlags="$configureFlags --with-nettle=${nettle.dev} --with-libunbound-only"
|
|
|
|
configurePhase
|
|
|
|
buildPhase
|
2021-11-11 12:26:21 +00:00
|
|
|
if [ -n "$doCheck" ]; then
|
|
|
|
checkPhase
|
|
|
|
fi
|
2017-02-27 16:41:35 +00:00
|
|
|
installPhase
|
|
|
|
''
|
2020-05-07 12:12:38 +01:00
|
|
|
# get rid of runtime dependencies on $dev outputs
|
2017-02-27 16:41:35 +00:00
|
|
|
+ ''substituteInPlace "$lib/lib/libunbound.la" ''
|
2020-05-07 12:12:38 +01:00
|
|
|
+ lib.concatMapStrings
|
|
|
|
(pkg: lib.optionalString (pkg ? dev) " --replace '-L${pkg.dev}/lib' '-L${pkg.out}/lib' --replace '-R${pkg.dev}/lib' '-R${pkg.out}/lib'")
|
|
|
|
(builtins.filter (p: p != null) buildInputs);
|
2015-10-05 09:53:30 +01:00
|
|
|
|
2021-10-16 02:29:42 +01:00
|
|
|
passthru.tests = nixosTests.unbound;
|
|
|
|
|
2020-05-07 12:12:38 +01:00
|
|
|
meta = with lib; {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Validating, recursive, and caching DNS resolver";
|
2015-10-05 09:53:30 +01:00
|
|
|
license = licenses.bsd3;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.unbound.net";
|
2019-08-20 18:36:05 +01:00
|
|
|
maintainers = with maintainers; [ ehmry fpletz globin ];
|
2020-05-07 12:12:38 +01:00
|
|
|
platforms = platforms.unix;
|
2010-02-09 07:28:32 +00:00
|
|
|
};
|
|
|
|
}
|