diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2024-09-22 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2024-09-22 02:00:00 +0200 |
commit | 198840bcb597fa7c9b15a7e760c22cd5ece0cc4f (patch) | |
tree | 3165423839db761e40828fef0b06d62e29403930 | |
parent | 889c44b553c08f9885a855e1116e9e718901c756 (diff) | |
download | guix-198840bcb597fa7c9b15a7e760c22cd5ece0cc4f.tar guix-198840bcb597fa7c9b15a7e760c22cd5ece0cc4f.tar.gz |
gnu: cups: Update to 2.4.10 [fixes nothitg]
Change-Id: Ic600f96d7cae1d4ecc0f5b1b4561caae317c4048
-rw-r--r-- | gnu/packages/cups.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm index e8f972c34a..2ce4045675 100644 --- a/gnu/packages/cups.scm +++ b/gnu/packages/cups.scm @@ -263,6 +263,7 @@ filters for the PDF-centric printing workflow introduced by OpenPrinting.") (package (name "cups-minimal") (version "2.4.9") + (replacement cups-minimal/fixed) (source (origin (method git-fetch) @@ -352,6 +353,21 @@ 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.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/OpenPrinting/cups") + (commit (string-append "v" version)))) + ;; Avoid NAME confusion: these are the complete CUPS sources. + (file-name (git-file-name "cups" version)) + (sha256 + (base32 "0mqx302mnk728h9sq5lknfv3ip7mfv44x3cqrjpndcdffd0ppnsw")))))) + (define-public cups (package/inherit cups-minimal (name "cups") |