mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 15:26:47 +01:00
gnu: znc: Update to 1.9.1 [fixes CVE-2024-39844].
* gnu/packages/messaging.scm (znc): Update to 1.9.1. [arguments]: Don't explicitly return #t from phases. Change-Id: I115ea81d75b44a363b84216ed6e1d237517d1d29
This commit is contained in:
parent
bcd627f58e
commit
f40234e225
1 changed files with 4 additions and 4 deletions
|
@ -1091,14 +1091,14 @@ (define-public pidgin-otr
|
|||
(define-public znc
|
||||
(package
|
||||
(name "znc")
|
||||
(version "1.8.2")
|
||||
(version "1.9.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://znc.in/releases/archive/znc-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"03fyi0j44zcanj1rsdx93hkdskwfvhbywjiwd17f9q1a7yp8l8zz"))))
|
||||
"0g2gi7207lydmm7zdq52ivw0vhvbnmhsybi89q5m3bcsw60cz9z8"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
|
@ -1114,14 +1114,14 @@ (define-public znc
|
|||
(let ((source (assoc-ref inputs "googletest-source"))
|
||||
(target "third_party/googletest"))
|
||||
(mkdir-p target)
|
||||
(copy-recursively source target)
|
||||
#t))))))
|
||||
(copy-recursively source target)))))))
|
||||
(native-inputs
|
||||
`(("boost" ,boost)
|
||||
("gettext" ,gettext-minimal)
|
||||
("googletest-source" ,(package-source googletest))
|
||||
("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
;; FIXME: Package cctz and remove the bundled copy from the source tarball.
|
||||
(list cyrus-sasl
|
||||
icu4c
|
||||
openssl
|
||||
|
|
Loading…
Reference in a new issue