diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2024-07-07 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2024-07-07 02:00:00 +0200 |
commit | f40234e225dcb6bfc51c05cf51fd01841e0f5dbd (patch) | |
tree | 31e6e78fb9b96c19ddf651a5d391ee84be0e22e5 | |
parent | bcd627f58e74ce44cc96a9aac37c6d9e9e3c0dcc (diff) | |
download | guix-f40234e225dcb6bfc51c05cf51fd01841e0f5dbd.tar.gz guix-f40234e225dcb6bfc51c05cf51fd01841e0f5dbd.zip |
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
-rw-r--r-- | gnu/packages/messaging.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 9ba83c0712..04200933ab 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -1091,14 +1091,14 @@ control of your private keys, no previous conversation is compromised.") (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 @@ control of your private keys, no previous conversation is compromised.") (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 |