bind: Update to 9.7.6-P3

Fixes CVE-2012-4244.
This commit is contained in:
Eelco Dolstra 2012-10-02 11:48:54 -04:00
parent f75dddde80
commit 3cf0b00b5a

View File

@ -1,15 +1,14 @@
{ stdenv, fetchurl, openssl, libtool, perl, libxml2 }: { stdenv, fetchurl, openssl, libtool, perl, libxml2 }:
let let version = "9.7.6-P3"; in
version = "9.7.6-P1";
in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "bind-${version}"; name = "bind-${version}";
src = fetchurl { src = fetchurl {
url = "http://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz"; url = "http://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz";
sha256 = "1xp7c3fpi3b6y1bz77mf7c98ic7rxp5lpwlmzqwsdrllip33qw1k"; sha256 = "0xx23dcy9rbky8ar89pg3s07njqy7667sfrnbqc334pvd2qxanjx";
}; };
patchPhase = '' patchPhase = ''
@ -21,7 +20,7 @@ stdenv.mkDerivation rec {
/* Why --with-libtool? */ /* Why --with-libtool? */
configureFlags = [ "--with-libtool" "--with-openssl=${openssl}" configureFlags = [ "--with-libtool" "--with-openssl=${openssl}"
"--localstatedir=/var" ]; "--localstatedir=/var" ];
meta = { meta = {
homepage = http://www.isc.org/software/bind; homepage = http://www.isc.org/software/bind;
description = "ISC BIND: a domain name server"; description = "ISC BIND: a domain name server";