bind: update to version 9.9.2-P2 to fix CVE 2010-4051 /2010-4052

This commit is contained in:
Peter Simons 2013-04-01 10:15:46 +02:00
parent 78af53bb05
commit d95c79bad7

View File

@ -1,6 +1,6 @@
{ stdenv, fetchurl, openssl, libtool, perl, libxml2 }:
let version = "9.9.2"; in
let version = "9.9.2-P2"; in
stdenv.mkDerivation rec {
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "http://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz";
sha256 = "0j4v01ch4xkgnsnngmh6bpapzi53n4k79gbbhmxf44nmk2qk0rby";
sha256 = "1lk5npyr6bkm4gs2m90k4s8lmlcpfdphzqhi2hjnj2amwcs2g0pz";
};
patchPhase = ''
@ -22,9 +22,10 @@ stdenv.mkDerivation rec {
"--localstatedir=/var" ];
meta = {
homepage = http://www.isc.org/software/bind;
homepage = "http://www.isc.org/software/bind";
description = "ISC BIND: a domain name server";
maintainers = with stdenv.lib.maintainers; [viric];
maintainers = with stdenv.lib.maintainers; [viric simons];
platforms = with stdenv.lib.platforms; linux;
};
}