nixpkgs/pkgs/servers/dns/bind/default.nix

89 lines
2.5 KiB
Nix
Raw Normal View History

{ config, stdenv, lib, fetchurl, fetchpatch
, perl
, libcap, libtool, libxml2, openssl
2019-02-03 15:33:28 +00:00
, enablePython ? config.bind.enablePython or false, python3 ? null
2018-02-27 22:27:48 +00:00
, enableSeccomp ? false, libseccomp ? null, buildPackages
}:
assert enableSeccomp -> libseccomp != null;
2017-11-17 13:03:30 +00:00
assert enablePython -> python3 != null;
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "bind";
version = "9.14.12";
src = fetchurl {
2019-08-13 21:52:01 +00:00
url = "https://ftp.isc.org/isc/bind9/${version}/${pname}-${version}.tar.gz";
sha256 = "1j7ldvdschmvzxrbajjhmdsl2iqxc1lm64vk0a5sdykxpy9y8kcw";
};
outputs = [ "out" "lib" "dev" "man" "dnsutils" "host" ];
patches = [
./dont-keep-configure-flags.patch
./remove-mkdir-var.patch
];
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
++ lib.optional enableSeccomp libseccomp
2019-02-03 15:33:28 +00:00
++ lib.optional enablePython (python3.withPackages (ps: with ps; [ ply ]));
2018-02-27 22:27:48 +00:00
depsBuildBuild = [ buildPackages.stdenv.cc ];
configureFlags = [
"--localstatedir=/var"
"--with-libtool"
"--with-libxml2=${libxml2.dev}"
"--with-openssl=${openssl.dev}"
(if enablePython then "--with-python" else "--without-python")
"--without-atf"
"--without-dlopen"
"--without-docbook-xsl"
"--without-gssapi"
"--without-idn"
"--without-idnlib"
"--without-lmdb"
"--without-libjson"
"--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"
++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "BUILD_CC=$(CC_FOR_BUILD)";
postInstall = ''
moveToOutput bin/bind9-config $dev
moveToOutput bin/isc-config.sh $dev
moveToOutput bin/host $host
moveToOutput bin/dig $dnsutils
moveToOutput bin/delv $dnsutils
moveToOutput bin/nslookup $dnsutils
moveToOutput bin/nsupdate $dnsutils
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'
done
'';
doCheck = false; # requires root and the net
meta = with stdenv.lib; {
homepage = "https://www.isc.org/downloads/bind/";
description = "Domain name server";
license = licenses.mpl20;
maintainers = with maintainers; [ peti globin ];
platforms = platforms.unix;
outputsToInstall = [ "out" "dnsutils" "host" ];
};
}