c4661e9643
This is a rebase of most commits from #14766, resolving conflicts and a few other evaluation problems.
54 lines
1.3 KiB
Nix
54 lines
1.3 KiB
Nix
{ stdenv, fetchurl, openssl, libtool, perl, libxml2 }:
|
|
|
|
let version = "9.10.4"; in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "bind-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz";
|
|
sha256 = "0mmhzi4483mkak47wj255a36g3v0yilxwfwlbckr1hssinri5m7q";
|
|
};
|
|
|
|
outputs = [ "dev" "bin" "out" "man" ];
|
|
|
|
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 ];
|
|
|
|
configureFlags = [
|
|
"--localstatedir=/var"
|
|
"--with-libtool"
|
|
"--with-libxml2=${libxml2}"
|
|
"--with-openssl=${openssl.dev}"
|
|
"--without-atf"
|
|
"--without-dlopen"
|
|
"--without-docbook-xsl"
|
|
"--without-gssapi"
|
|
"--without-idn"
|
|
"--without-idnlib"
|
|
"--without-pkcs11"
|
|
"--without-purify"
|
|
"--without-python"
|
|
];
|
|
|
|
postInstall = ''
|
|
moveToOutput bin/bind9-config $dev
|
|
moveToOutput bin/isc-config.sh $dev
|
|
|
|
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;
|
|
};
|
|
}
|