mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: nagios: Update to 4.2.4 [fixes CVE-2016-{9565,9566}].
* gnu/packages/monitoring.scm (nagios): Update to 4.2.4. [native-inputs]: New field.
This commit is contained in:
parent
f11c444d44
commit
7fc2d377d1
1 changed files with 9 additions and 6 deletions
|
@ -24,16 +24,17 @@ (define-module (gnu packages monitoring)
|
|||
#:use-module (guix build-system gnu)
|
||||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages mail)
|
||||
#:use-module (gnu packages gd)
|
||||
#:use-module (gnu packages image))
|
||||
#:use-module (gnu packages image)
|
||||
#:use-module (gnu packages mail)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages zip))
|
||||
|
||||
(define-public nagios
|
||||
(package
|
||||
(name "nagios")
|
||||
(version "4.0.8")
|
||||
;; XXX: Newer versions such as 4.2.3 bundle a copy of AngularJS.
|
||||
(version "4.2.4")
|
||||
;; XXX: Nagios 4.2.x and later bundle a copy of AngularJS.
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
|
@ -41,7 +42,7 @@ (define-public nagios
|
|||
version "/nagios-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0jyad39wa318613awlnpczrrakvjcipz8qp1mdsig1cp1hjqs9lb"))
|
||||
"0w0blbwiw0ps04b7gkyyk89qkgwsxh6gydhmggbm1kl3ar3mq1dh"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
;; Ensure reproducibility.
|
||||
|
@ -49,6 +50,8 @@ (define-public nagios
|
|||
(("__DATE__") "\"1970-01-01\"")
|
||||
(("__TIME__") "\"00:00:00\"")))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("unzip" ,unzip)))
|
||||
(inputs
|
||||
`(("zlib" ,zlib)
|
||||
("libpng-apng" ,libpng)
|
||||
|
|
Loading…
Reference in a new issue