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

44 lines
1,023 B
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl, libtool, perl, libxml2 }:
2015-09-17 20:14:01 +00:00
let version = "9.10.3"; in
stdenv.mkDerivation rec {
name = "bind-${version}";
src = fetchurl {
url = "http://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz";
2015-09-17 20:14:01 +00:00
sha256 = "1w4gp4hdkb452nmz91l413d1rx89isl2l6wv8kpbdd2afpc3phws";
};
patchPhase = ''
sed -i 's/^\t.*run/\t/' Makefile.in
'';
buildInputs = [ openssl libtool perl libxml2 ];
configureFlags = [
"--localstatedir=/var"
"--with-libtool"
"--with-libxml2=${libxml2}"
"--with-openssl=${openssl}"
"--without-atf"
"--without-dlopen"
"--without-docbook-xsl"
"--without-gssapi"
"--without-idn"
"--without-idnlib"
"--without-pkcs11"
"--without-purify"
"--without-python"
];
meta = {
homepage = "http://www.isc.org/software/bind";
description = "Domain name server";
license = stdenv.lib.licenses.isc;
maintainers = with stdenv.lib.maintainers; [viric simons];
platforms = with stdenv.lib.platforms; unix;
};
}