2018-06-09 23:43:13 +00:00
|
|
|
{ stdenv, lib, fetchurl
|
|
|
|
, perl
|
|
|
|
, libcap, libtool, libxml2, openssl
|
2018-04-21 19:48:30 +00:00
|
|
|
, enablePython ? false, python3 ? null
|
2018-02-27 22:27:48 +00:00
|
|
|
, enableSeccomp ? false, libseccomp ? null, buildPackages
|
|
|
|
}:
|
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
|
|
|
|
2018-12-26 12:34:11 +00:00
|
|
|
let version = "9.12.3-P1"; in
|
2012-10-02 15:48:54 +00:00
|
|
|
|
2011-01-07 11:33:04 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-06-01 19:35:41 +00:00
|
|
|
name = "bind-${version}";
|
2011-01-07 11:33:04 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz";
|
2018-12-26 12:34:11 +00:00
|
|
|
sha256 = "0wzdbn6ig851354cjdys5q3gvqcvl2gmmih1gzr8ldl7sy4r7dvc";
|
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
|
|
|
|
|
|
|
patches = [ ./dont-keep-configure-flags.patch ./remove-mkdir-var.patch ] ++
|
2016-05-12 22:29:30 +00:00
|
|
|
stdenv.lib.optional stdenv.isDarwin ./darwin-openssl-linking-fix.patch;
|
2015-11-28 18:26:59 +00:00
|
|
|
|
2018-01-09 22:54:08 +00:00
|
|
|
nativeBuildInputs = [ perl ];
|
2018-06-11 00:04:29 +00:00
|
|
|
buildInputs = [ libtool libxml2 openssl ]
|
|
|
|
++ lib.optional stdenv.isLinux libcap
|
2017-11-15 14:33:30 +00:00
|
|
|
++ lib.optional enableSeccomp libseccomp
|
2017-11-17 13:03:30 +00:00
|
|
|
++ lib.optional enablePython python3;
|
2011-01-07 11:33:04 +00:00
|
|
|
|
2017-02-19 11:11:52 +00:00
|
|
|
STD_CDEFINES = [ "-DDIG_SIGCHASE=1" ]; # support +sigchase
|
|
|
|
|
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"
|
2016-08-29 23:57:21 +00:00
|
|
|
"--with-libxml2=${libxml2.dev}"
|
2016-04-16 17:44:32 +00:00
|
|
|
"--with-openssl=${openssl.dev}"
|
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}"
|
|
|
|
++ lib.optional enableSeccomp "--enable-seccomp";
|
2012-10-02 15:48:54 +00:00
|
|
|
|
2015-10-30 21:12:29 +00:00
|
|
|
postInstall = ''
|
|
|
|
moveToOutput bin/bind9-config $dev
|
|
|
|
moveToOutput bin/isc-config.sh $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
|
|
|
|
moveToOutput bin/nslookup $dnsutils
|
|
|
|
moveToOutput bin/nsupdate $dnsutils
|
|
|
|
|
2016-12-08 17:50:07 +00:00
|
|
|
for f in "$lib/lib/"*.la "$dev/bin/"{isc-config.sh,bind*-config}; do
|
|
|
|
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
|
|
|
|
|
2011-01-07 11:33:04 +00:00
|
|
|
meta = {
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://www.isc.org/software/bind;
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Domain name server";
|
2018-01-17 01:39:20 +00:00
|
|
|
license = stdenv.lib.licenses.mpl20;
|
2015-06-01 19:35:51 +00:00
|
|
|
|
2018-07-22 19:50:19 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [peti];
|
2015-06-01 19:35:51 +00:00
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
2017-01-05 18:58:26 +00:00
|
|
|
|
|
|
|
outputsToInstall = [ "out" "dnsutils" "host" ];
|
2011-01-07 11:33:04 +00:00
|
|
|
};
|
|
|
|
}
|