2020-05-07 13:12:38 +02:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchurl
|
|
|
|
, openssl
|
|
|
|
, nettle
|
|
|
|
, expat
|
|
|
|
, libevent
|
2021-09-19 16:04:30 +02:00
|
|
|
, libsodium
|
|
|
|
, protobufc
|
|
|
|
, hiredis
|
2022-01-04 14:45:58 +01:00
|
|
|
, python ? null
|
|
|
|
, swig
|
2020-05-07 13:12:38 +02:00
|
|
|
, dns-root-data
|
|
|
|
, pkg-config
|
2021-04-24 08:59:55 +02:00
|
|
|
, makeWrapper
|
2021-09-19 16:04:30 +02:00
|
|
|
, symlinkJoin
|
2021-10-16 03:29:42 +02:00
|
|
|
, bison
|
|
|
|
, nixosTests
|
2020-05-07 13:12:38 +02: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 18:54:33 +01:00
|
|
|
# optionally support DNS-over-HTTPS as a server
|
|
|
|
, withDoH ? false
|
2021-09-19 16:04:30 +02:00
|
|
|
, withECS ? false
|
|
|
|
, withDNSCrypt ? false
|
|
|
|
, withDNSTAP ? false
|
|
|
|
, withTFO ? false
|
|
|
|
, withRedis ? false
|
treewide: use lib.getLib for OpenSSL libraries
At some point, I'd like to make another attempt at
71f1f4884b5 ("openssl: stop static binaries referencing libs"), which
was reverted in 195c7da07df. One problem with my previous attempt is
that I moved OpenSSL's libraries to a lib output, but many dependent
packages were hardcoding the out output as the location of the
libraries. This patch fixes every such case I could find in the tree.
It won't have any effect immediately, but will mean these packages
will automatically use an OpenSSL lib output if it is reintroduced in
future.
This patch should cause very few rebuilds, because it shouldn't make
any change at all to most packages I'm touching. The few rebuilds
that are introduced come from when I've changed a package builder not
to use variable names like openssl.out in scripts / substitution
patterns, which would be confusing since they don't hardcode the
output any more.
I started by making the following global replacements:
${pkgs.openssl.out}/lib -> ${lib.getLib pkgs.openssl}/lib
${openssl.out}/lib -> ${lib.getLib openssl}/lib
Then I removed the ".out" suffix when part of the argument to
lib.makeLibraryPath, since that function uses lib.getLib internally.
Then I fixed up cases where openssl was part of the -L flag to the
compiler/linker, since that unambigously is referring to libraries.
Then I manually investigated and fixed the following packages:
- pycurl
- citrix-workspace
- ppp
- wraith
- unbound
- gambit
- acl2
I'm reasonably confindent in my fixes for all of them.
For acl2, since the openssl library paths are manually provided above
anyway, I don't think openssl is required separately as a build input
at all. Removing it doesn't make a difference to the output size, the
file list, or the closure.
I've tested evaluation with the OfBorg meta checks, to protect against
introducing evaluation failures.
2022-03-25 16:33:21 +01:00
|
|
|
# Avoid .lib depending on lib.getLib openssl
|
2021-11-28 15:41:19 +01:00
|
|
|
# The build gets a little hacky, so in some cases we disable this approach.
|
|
|
|
, withSlimLib ? stdenv.isLinux && !stdenv.hostPlatform.isMusl && !withDNSTAP
|
2022-08-06 18:23:09 +02:00
|
|
|
# enable support for python plugins in unbound: note this is distinct from pyunbound
|
|
|
|
# see https://unbound.docs.nlnetlabs.nl/en/latest/developer/python-modules.html
|
2022-01-04 14:45:58 +01:00
|
|
|
, withPythonModule ? false
|
2021-01-01 18:54:33 +01:00
|
|
|
, libnghttp2
|
2022-08-06 18:21:45 +02:00
|
|
|
|
|
|
|
# for passthru.tests
|
|
|
|
, gnutls
|
2020-05-07 13:12:38 +02:00
|
|
|
}:
|
2010-02-09 08:28:32 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "unbound";
|
2022-10-13 15:17:51 +02:00
|
|
|
version = "1.17.0";
|
2010-02-09 08:28:32 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-23 23:08:21 +02:00
|
|
|
url = "https://nlnetlabs.nl/downloads/unbound/unbound-${version}.tar.gz";
|
2022-10-13 15:17:51 +02:00
|
|
|
hash = "sha256-3LyV14kdn5EMZuTtyfHy/eTeou7Bjjr591rtRKAvE0E=";
|
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
|
|
|
|
|
2022-09-25 04:49:25 +02:00
|
|
|
nativeBuildInputs = [ makeWrapper pkg-config ]
|
2022-01-04 14:45:58 +01:00
|
|
|
++ lib.optionals withPythonModule [ swig ];
|
2021-04-24 08:59:55 +02:00
|
|
|
|
2021-01-01 18:54:33 +01:00
|
|
|
buildInputs = [ openssl nettle expat libevent ]
|
2022-09-25 04:49:25 +02:00
|
|
|
++ lib.optionals withSystemd [ systemd ]
|
2022-01-04 14:45:58 +01:00
|
|
|
++ lib.optionals withDoH [ libnghttp2 ]
|
|
|
|
++ lib.optionals withPythonModule [ python ];
|
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"
|
2017-06-16 05:11:56 +02:00
|
|
|
"--with-rootkey-file=${dns-root-data}/root.key"
|
2016-02-15 04:27:49 +01:00
|
|
|
"--enable-pie"
|
|
|
|
"--enable-relro-now"
|
2022-10-06 18:38:53 +02:00
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isStatic [
|
2020-04-12 22:03:02 +02:00
|
|
|
"--disable-flto"
|
2020-05-07 13:12:38 +02:00
|
|
|
] ++ lib.optionals withSystemd [
|
|
|
|
"--enable-systemd"
|
2022-01-04 14:45:58 +01:00
|
|
|
] ++ lib.optionals withPythonModule [
|
|
|
|
"--with-pythonmodule"
|
2021-01-01 18:54:33 +01:00
|
|
|
] ++ lib.optionals withDoH [
|
|
|
|
"--with-libnghttp2=${libnghttp2.dev}"
|
2021-09-19 16:04:30 +02: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 06:49:51 +01:00
|
|
|
];
|
2010-02-09 08:28:32 +01:00
|
|
|
|
2021-10-18 16:13:14 +02:00
|
|
|
PROTOC_C = lib.optionalString withDNSTAP "${protobufc}/bin/protoc-c";
|
2021-09-19 16:04:30 +02:00
|
|
|
|
2021-06-02 01:23:06 +02: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 03:29:42 +02:00
|
|
|
checkInputs = [ bison ];
|
|
|
|
|
2021-11-11 13:23:12 +01:00
|
|
|
doCheck = true;
|
2021-10-16 03:29:42 +02:00
|
|
|
|
2022-01-04 14:45:58 +01:00
|
|
|
postPatch = lib.optionalString withPythonModule ''
|
|
|
|
substituteInPlace Makefile.in \
|
|
|
|
--replace "\$(DESTDIR)\$(PYTHON_SITE_PKG)" "$out/${python.sitePackages}"
|
|
|
|
'';
|
|
|
|
|
2015-04-21 02:50:39 +02:00
|
|
|
installFlags = [ "configfile=\${out}/etc/unbound/unbound.conf" ];
|
|
|
|
|
2019-12-08 00:40:22 +01:00
|
|
|
postInstall = ''
|
|
|
|
make unbound-event-install
|
2021-04-24 08:59:55 +02:00
|
|
|
wrapProgram $out/bin/unbound-control-setup \
|
|
|
|
--prefix PATH : ${lib.makeBinPath [ openssl ]}
|
2022-01-04 14:45:58 +01:00
|
|
|
'' + lib.optionalString withPythonModule ''
|
|
|
|
wrapProgram $out/bin/unbound \
|
|
|
|
--prefix PYTHONPATH : "$out/${python.sitePackages}" \
|
|
|
|
--argv0 $out/bin/unbound
|
2019-12-08 00:40:22 +01:00
|
|
|
'';
|
|
|
|
|
2021-11-28 15:41:19 +01:00
|
|
|
preFixup = lib.optionalString withSlimLib
|
2017-02-27 17:41:35 +01:00
|
|
|
# Build libunbound again, but only against nettle instead of openssl.
|
treewide: use lib.getLib for OpenSSL libraries
At some point, I'd like to make another attempt at
71f1f4884b5 ("openssl: stop static binaries referencing libs"), which
was reverted in 195c7da07df. One problem with my previous attempt is
that I moved OpenSSL's libraries to a lib output, but many dependent
packages were hardcoding the out output as the location of the
libraries. This patch fixes every such case I could find in the tree.
It won't have any effect immediately, but will mean these packages
will automatically use an OpenSSL lib output if it is reintroduced in
future.
This patch should cause very few rebuilds, because it shouldn't make
any change at all to most packages I'm touching. The few rebuilds
that are introduced come from when I've changed a package builder not
to use variable names like openssl.out in scripts / substitution
patterns, which would be confusing since they don't hardcode the
output any more.
I started by making the following global replacements:
${pkgs.openssl.out}/lib -> ${lib.getLib pkgs.openssl}/lib
${openssl.out}/lib -> ${lib.getLib openssl}/lib
Then I removed the ".out" suffix when part of the argument to
lib.makeLibraryPath, since that function uses lib.getLib internally.
Then I fixed up cases where openssl was part of the -L flag to the
compiler/linker, since that unambigously is referring to libraries.
Then I manually investigated and fixed the following packages:
- pycurl
- citrix-workspace
- ppp
- wraith
- unbound
- gambit
- acl2
I'm reasonably confindent in my fixes for all of them.
For acl2, since the openssl library paths are manually provided above
anyway, I don't think openssl is required separately as a build input
at all. Removing it doesn't make a difference to the output size, the
file list, or the closure.
I've tested evaluation with the OfBorg meta checks, to protect against
introducing evaluation failures.
2022-03-25 16:33:21 +01:00
|
|
|
# This avoids gnutls.out -> unbound.lib -> lib.getLib openssl.
|
2017-02-27 17:41:35 +01:00
|
|
|
''
|
|
|
|
configureFlags="$configureFlags --with-nettle=${nettle.dev} --with-libunbound-only"
|
|
|
|
configurePhase
|
|
|
|
buildPhase
|
2021-11-11 13:26:21 +01:00
|
|
|
if [ -n "$doCheck" ]; then
|
|
|
|
checkPhase
|
|
|
|
fi
|
2017-02-27 17:41:35 +01:00
|
|
|
installPhase
|
|
|
|
''
|
2020-05-07 13:12:38 +02:00
|
|
|
# get rid of runtime dependencies on $dev outputs
|
2017-02-27 17:41:35 +01:00
|
|
|
+ ''substituteInPlace "$lib/lib/libunbound.la" ''
|
2020-05-07 13:12:38 +02: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 10:53:30 +02:00
|
|
|
|
2022-08-06 18:21:45 +02:00
|
|
|
passthru.tests = {
|
|
|
|
inherit gnutls;
|
|
|
|
nixos-test = nixosTests.unbound;
|
|
|
|
};
|
2021-10-16 03:29:42 +02:00
|
|
|
|
2020-05-07 13:12:38 +02:00
|
|
|
meta = with 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;
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.unbound.net";
|
2022-08-01 17:15:35 +02:00
|
|
|
maintainers = with maintainers; [ ajs124 ];
|
2020-05-07 13:12:38 +02:00
|
|
|
platforms = platforms.unix;
|
2010-02-09 08:28:32 +01:00
|
|
|
};
|
|
|
|
}
|