2011-01-07 12:33:04 +01:00
|
|
|
{ stdenv, fetchurl, openssl, libtool, perl, libxml2 }:
|
|
|
|
|
2013-04-01 10:15:46 +02:00
|
|
|
let version = "9.9.2-P2"; 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-04-01 10:15:46 +02:00
|
|
|
sha256 = "1lk5npyr6bkm4gs2m90k4s8lmlcpfdphzqhi2hjnj2amwcs2g0pz";
|
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 ];
|
|
|
|
|
|
|
|
/* Why --with-libtool? */
|
2011-01-11 23:08:43 +01:00
|
|
|
configureFlags = [ "--with-libtool" "--with-openssl=${openssl}"
|
|
|
|
"--localstatedir=/var" ];
|
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: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;
|
|
|
|
};
|
|
|
|
}
|