diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-12-23 04:31:16 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-12-23 19:45:57 +0100 |
commit | cb73f30d529efd1be7c19f887d8299dce119be2f (patch) | |
tree | fa26521249adc34a107f8f63b56a1c1b6fce90af /gnu | |
parent | 5a30234c210dfb37da832125cdbda6a9a0c585ca (diff) | |
download | guix-cb73f30d529efd1be7c19f887d8299dce119be2f.tar.gz guix-cb73f30d529efd1be7c19f887d8299dce119be2f.zip |
gnu: knot-resolver: Update to 4.3.0 [fixes CVE-2019-19331].
* gnu/packages/dns.scm (knot-resolver): Update to 4.3.0.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/dns.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index e7782a7bc9..1ec9bcbe83 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -671,18 +671,18 @@ synthesis, and on-the-fly re-configuration.") (define-public knot-resolver (package (name "knot-resolver") - (version "4.2.2") + (version "4.3.0") (source (origin (method url-fetch) (uri (string-append "https://secure.nic.cz/files/knot-resolver/" "knot-resolver-" version ".tar.xz")) (sha256 (base32 - "0n0llpclhparq9wbcrymxkl5d03c4y4p3shcbdxfv6j22vzqvdh3")))) + "09ffmqx79lv5psr433x4n946njgsn071b9b7161pcb9bmrqz380c")))) (build-system meson-build-system) (arguments '(#:configure-flags - '("-Dmanaged_ta=disabled" ; We'll manage the DNS root data ourself. + '("-Dmanaged_ta=disabled" ; we'll manage the DNS root data ourself "-Ddoc=enabled") #:phases (modify-phases %standard-phases |