guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: cups: Replace with 2.4.6 [fixes CVE-2023-34241].


From: guix-commits
Subject: 02/02: gnu: cups: Replace with 2.4.6 [fixes CVE-2023-34241].
Date: Sat, 8 Jul 2023 20:02:57 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 2986ba899f5ee374008c501e26fb653147ed7891
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Jul 2 02:00:00 2023 +0200

    gnu: cups: Replace with 2.4.6 [fixes CVE-2023-34241].
    
    * gnu/packages/cups.scm (cups-minimal/fixed): New variable.
    (cups-minimal)[replacement]: Assign it to new field.
---
 gnu/packages/cups.scm | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm
index 133d7debf4..74f7875f69 100644
--- a/gnu/packages/cups.scm
+++ b/gnu/packages/cups.scm
@@ -249,6 +249,7 @@ filters for the PDF-centric printing workflow introduced by 
OpenPrinting.")
   (package
     (name "cups-minimal")
     (version "2.4.2")
+    (replacement cups-minimal/fixed)
     (source
      (origin
        (method git-fetch)
@@ -335,6 +336,20 @@ applications''.  These must be installed separately.")
     ;; CUPS is Apache 2.0 with exceptions, see the NOTICE file.
     (license license:asl2.0)))
 
+(define cups-minimal/fixed
+  (package
+    (inherit cups-minimal)
+    (version "2.4.6")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/OpenPrinting/cups";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name "cups" version))
+       (sha256
+        (base32 "0z70rhfd96qmdx82gdhh2nqjiia0lnvfdwpngjkag2sidw4cm3c1"))))))
+
 (define-public cups
   (package/inherit cups-minimal
     (name "cups")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]