2011-01-07 12:33:04 +01:00
|
|
|
{ stdenv, fetchurl, openssl, libtool, perl, libxml2 }:
|
|
|
|
|
2013-06-07 13:27:12 +02:00
|
|
|
let version = "9.9.3-P1"; in
|
2012-10-02 17:48:54 +02:00
|
|
|
|
2011-01-07 12:33:04 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "bind-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz";
|
2013-06-07 13:27:12 +02:00
|
|
|
sha256 = "0ddlvdxsyibm24v1wzbknywvalsrvl06gbvsrigpqc1vgkj25ahv";
|
2011-01-07 12:33:04 +01:00
|
|
|
};
|
|
|
|
|
2011-01-11 23:08:43 +01:00
|
|
|
patchPhase = ''
|
|
|
|
sed -i 's/^\t.*run/\t/' Makefile.in
|
|
|
|
'';
|
|
|
|
|
2011-01-07 12:33:04 +01:00
|
|
|
buildInputs = [ openssl libtool perl libxml2 ];
|
|
|
|
|
2013-06-09 19:25:46 +02:00
|
|
|
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"
|
|
|
|
];
|
2012-10-02 17:48:54 +02:00
|
|
|
|
2011-01-07 12:33:04 +01:00
|
|
|
meta = {
|
2013-04-01 10:15:46 +02:00
|
|
|
homepage = "http://www.isc.org/software/bind";
|
2011-01-07 12:33:04 +01:00
|
|
|
description = "ISC BIND: a domain name server";
|
2013-04-01 10:18:44 +02:00
|
|
|
license = stdenv.lib.licenses.isc;
|
2013-04-01 10:15:46 +02:00
|
|
|
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric simons];
|
2011-01-07 12:33:04 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|