diff options
author | Leo Famulari <leo@famulari.name> | 2018-06-14 16:49:21 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-06-15 16:41:16 -0400 |
commit | 12e530ba63ad848d3d3194f09e8b54b693d74896 (patch) | |
tree | 561dce8a376a665bee6a64598f2eae814210bdd4 /gnu/packages/dns.scm | |
parent | a7c8716928a240ba2c36d360e4ffeb447671fa6b (diff) | |
download | patches-12e530ba63ad848d3d3194f09e8b54b693d74896.tar patches-12e530ba63ad848d3d3194f09e8b54b693d74896.tar.gz |
gnu: BIND: Fix CVE-2018-5738.
* gnu/packages/patches/bind-CVE-2018-5738.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/dns.scm (isc-bind)[source]: Use it.
Diffstat (limited to 'gnu/packages/dns.scm')
-rw-r--r-- | gnu/packages/dns.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index 0b8d8be574..4fce4b34ba 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -50,6 +50,7 @@ #:use-module (gnu packages tls) #:use-module (gnu packages web) #:use-module (gnu packages xml) + #:use-module (gnu packages) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) @@ -104,6 +105,7 @@ and BOOTP/TFTP for network booting of diskless machines.") (uri (string-append "ftp://ftp.isc.org/isc/bind9/" version "/" name "-" version ".tar.gz")) + (patches (search-patches "bind-CVE-2018-5738.patch")) (sha256 (base32 "0a9dvyg1dk7vpqn9gz7p5jas3bz7z22bjd66b98g1qk16i2w7rqd")))) |