mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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.
This commit is contained in:
parent
88d107b2b9
commit
2986ba899f
1 changed files with 15 additions and 0 deletions
|
@ -249,6 +249,7 @@ filters for the PDF-centric printing workflow introduced by OpenPrinting.")
|
||||||
(package
|
(package
|
||||||
(name "cups-minimal")
|
(name "cups-minimal")
|
||||||
(version "2.4.2")
|
(version "2.4.2")
|
||||||
|
(replacement cups-minimal/fixed)
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -335,6 +336,20 @@ applications''. These must be installed separately.")
|
||||||
;; CUPS is Apache 2.0 with exceptions, see the NOTICE file.
|
;; CUPS is Apache 2.0 with exceptions, see the NOTICE file.
|
||||||
(license license:asl2.0)))
|
(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
|
(define-public cups
|
||||||
(package/inherit cups-minimal
|
(package/inherit cups-minimal
|
||||||
(name "cups")
|
(name "cups")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue