b4d8f8b8e2
The list of permitted syscalls in the seccomp sandbox is only defined for x86. It fails to build otherwise: ```` In file included from /tmp/nix-build-bind-9.10.4-P3.drv-0/bind-9.10.4-P3/lib/isc/include/isc/magic.h:23:0, from /tmp/nix-build-bind-9.10.4-P3.drv-0/bind-9.10.4-P3/lib/isc/include/isc/app.h:89, from ./main.c:26: ./main.c: In function 'setup_seccomp': ./main.c:848:17: error: 'scmp_syscalls' undeclared (first use in this function) INSIST((sizeof(scmp_syscalls) / sizeof(int)) == ````
65 lines
1.8 KiB
Nix
65 lines
1.8 KiB
Nix
{ stdenv, lib, fetchurl, openssl, libtool, perl, libxml2
|
|
, libseccomp ? null }:
|
|
|
|
let version = "9.10.4-P3"; in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "bind-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz";
|
|
sha256 = "1vxs29w4hnl7jcd7sknga58xv1qk2rcpsxyich7cpp7xi77faxd0";
|
|
};
|
|
|
|
outputs = [ "bin" "lib" "dev" "out" "man" "dnsutils" "host" ];
|
|
|
|
patches = [ ./dont-keep-configure-flags.patch ./remove-mkdir-var.patch ] ++
|
|
stdenv.lib.optional stdenv.isDarwin ./darwin-openssl-linking-fix.patch;
|
|
|
|
buildInputs = [ openssl libtool perl libxml2 ] ++
|
|
stdenv.lib.optional stdenv.isLinux libseccomp;
|
|
|
|
configureFlags = [
|
|
"--localstatedir=/var"
|
|
"--with-libtool"
|
|
"--with-libxml2=${libxml2.dev}"
|
|
"--with-openssl=${openssl.dev}"
|
|
"--without-atf"
|
|
"--without-dlopen"
|
|
"--without-docbook-xsl"
|
|
"--without-gssapi"
|
|
"--without-idn"
|
|
"--without-idnlib"
|
|
"--without-pkcs11"
|
|
"--without-purify"
|
|
"--without-python"
|
|
] ++ lib.optional (stdenv.isi686 || stdenv.isx86_64) "--enable-seccomp";
|
|
|
|
postInstall = ''
|
|
moveToOutput bin/bind9-config $dev
|
|
moveToOutput bin/isc-config.sh $dev
|
|
|
|
moveToOutput bin/host $host
|
|
ln -sf $host/bin/host $bin/bin
|
|
|
|
moveToOutput bin/dig $dnsutils
|
|
moveToOutput bin/nslookup $dnsutils
|
|
moveToOutput bin/nsupdate $dnsutils
|
|
ln -sf $dnsutils/bin/{dig,nslookup,nsupdate} $bin/bin
|
|
ln -sf $host/bin/host $dnsutils/bin
|
|
|
|
for f in "$out/lib/"*.la; do
|
|
sed -i $f -e 's|-L${openssl.dev}|-L${openssl.out}|g'
|
|
done
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "http://www.isc.org/software/bind";
|
|
description = "Domain name server";
|
|
license = stdenv.lib.licenses.isc;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric peti];
|
|
platforms = with stdenv.lib.platforms; unix;
|
|
};
|
|
}
|