2019-04-27 15:51:43 +00:00
|
|
|
{ config, stdenv, lib, fetchurl, fetchpatch
|
2020-09-24 16:10:16 +00:00
|
|
|
, perl, pkg-config
|
|
|
|
, libcap, libtool, libxml2, openssl, libuv
|
2019-02-03 15:33:28 +00:00
|
|
|
, enablePython ? config.bind.enablePython or false, python3 ? null
|
2020-09-24 16:23:30 +00:00
|
|
|
, enableSeccomp ? false, libseccomp ? null, buildPackages, nixosTests
|
2018-02-27 22:27:48 +00:00
|
|
|
}:
|
2017-05-09 16:10:06 +00:00
|
|
|
|
|
|
|
assert enableSeccomp -> libseccomp != null;
|
2017-11-17 13:03:30 +00:00
|
|
|
assert enablePython -> python3 != null;
|
2011-01-07 11:33:04 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "bind";
|
2021-05-20 10:21:52 +00:00
|
|
|
version = "9.16.16";
|
2011-01-07 11:33:04 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-09-24 16:10:16 +00:00
|
|
|
url = "https://downloads.isc.org/isc/bind9/${version}/${pname}-${version}.tar.xz";
|
2021-05-20 10:21:52 +00:00
|
|
|
sha256 = "sha256-bJE5Aq34eOfcXiKc6pT678nUD0R3WjAhPt0Ihg92HXs=";
|
2011-01-07 11:33:04 +00:00
|
|
|
};
|
|
|
|
|
2017-01-05 18:58:26 +00:00
|
|
|
outputs = [ "out" "lib" "dev" "man" "dnsutils" "host" ];
|
2015-10-30 21:12:29 +00:00
|
|
|
|
2019-05-17 07:59:53 +00:00
|
|
|
patches = [
|
|
|
|
./dont-keep-configure-flags.patch
|
|
|
|
./remove-mkdir-var.patch
|
2019-06-09 07:36:26 +00:00
|
|
|
];
|
2015-11-28 18:26:59 +00:00
|
|
|
|
2020-09-24 16:10:16 +00:00
|
|
|
nativeBuildInputs = [ perl pkg-config ];
|
|
|
|
buildInputs = [ libtool libxml2 openssl libuv ]
|
2018-06-11 00:04:29 +00:00
|
|
|
++ lib.optional stdenv.isLinux libcap
|
2017-11-15 14:33:30 +00:00
|
|
|
++ lib.optional enableSeccomp libseccomp
|
2019-02-03 15:33:28 +00:00
|
|
|
++ lib.optional enablePython (python3.withPackages (ps: with ps; [ ply ]));
|
2011-01-07 11:33:04 +00:00
|
|
|
|
2018-02-27 22:27:48 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
|
2013-06-09 17:25:46 +00:00
|
|
|
configureFlags = [
|
2015-06-01 19:35:51 +00:00
|
|
|
"--localstatedir=/var"
|
|
|
|
"--with-libtool"
|
2017-11-15 14:33:30 +00:00
|
|
|
(if enablePython then "--with-python" else "--without-python")
|
2015-06-01 19:35:51 +00:00
|
|
|
"--without-atf"
|
|
|
|
"--without-dlopen"
|
|
|
|
"--without-docbook-xsl"
|
|
|
|
"--without-gssapi"
|
|
|
|
"--without-idn"
|
|
|
|
"--without-idnlib"
|
2017-12-21 20:07:22 +00:00
|
|
|
"--without-lmdb"
|
2018-06-09 23:43:13 +00:00
|
|
|
"--without-libjson"
|
2015-06-01 19:35:51 +00:00
|
|
|
"--without-pkcs11"
|
|
|
|
"--without-purify"
|
2018-02-27 22:27:48 +00:00
|
|
|
"--with-randomdev=/dev/random"
|
|
|
|
"--with-ecdsa"
|
|
|
|
"--with-gost"
|
|
|
|
"--without-eddsa"
|
|
|
|
"--with-aes"
|
2018-06-11 00:04:29 +00:00
|
|
|
] ++ lib.optional stdenv.isLinux "--with-libcap=${libcap.dev}"
|
2020-06-15 19:03:03 +00:00
|
|
|
++ lib.optional enableSeccomp "--enable-seccomp"
|
|
|
|
++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "BUILD_CC=$(CC_FOR_BUILD)";
|
2012-10-02 15:48:54 +00:00
|
|
|
|
2015-10-30 21:12:29 +00:00
|
|
|
postInstall = ''
|
|
|
|
moveToOutput bin/bind9-config $dev
|
2016-05-18 20:05:51 +00:00
|
|
|
|
2016-10-08 14:01:15 +00:00
|
|
|
moveToOutput bin/host $host
|
|
|
|
|
|
|
|
moveToOutput bin/dig $dnsutils
|
2019-10-16 12:38:35 +00:00
|
|
|
moveToOutput bin/delv $dnsutils
|
2016-10-08 14:01:15 +00:00
|
|
|
moveToOutput bin/nslookup $dnsutils
|
|
|
|
moveToOutput bin/nsupdate $dnsutils
|
|
|
|
|
2020-09-24 16:10:16 +00:00
|
|
|
for f in "$lib/lib/"*.la "$dev/bin/"bind*-config; do
|
2016-12-08 17:50:07 +00:00
|
|
|
sed -i "$f" -e 's|-L${openssl.dev}|-L${openssl.out}|g'
|
2016-05-18 20:05:51 +00:00
|
|
|
done
|
2015-10-30 21:12:29 +00:00
|
|
|
'';
|
|
|
|
|
2018-04-25 03:20:18 +00:00
|
|
|
doCheck = false; # requires root and the net
|
|
|
|
|
2020-09-24 16:23:30 +00:00
|
|
|
passthru.tests = { inherit (nixosTests) bind; };
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.isc.org/downloads/bind/";
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Domain name server";
|
2019-08-20 17:36:05 +00:00
|
|
|
license = licenses.mpl20;
|
2015-06-01 19:35:51 +00:00
|
|
|
|
2019-08-20 17:36:05 +00:00
|
|
|
maintainers = with maintainers; [ peti globin ];
|
|
|
|
platforms = platforms.unix;
|
2017-01-05 18:58:26 +00:00
|
|
|
|
|
|
|
outputsToInstall = [ "out" "dnsutils" "host" ];
|
2011-01-07 11:33:04 +00:00
|
|
|
};
|
|
|
|
}
|