gnu: cups: Update to 2.1.4.
* gnu/packages/cups.scm (cups): Update to 2.1.4. [source]: Add Github fallback location. [home-page]: Use https.
This commit is contained in:
parent
3064d1763b
commit
d2a79db4f7
|
@ -116,14 +116,18 @@ filters for the PDF-centric printing workflow introduced by OpenPrinting.")
|
||||||
(define-public cups-minimal
|
(define-public cups-minimal
|
||||||
(package
|
(package
|
||||||
(name "cups-minimal")
|
(name "cups-minimal")
|
||||||
(version "2.1.0")
|
(version "2.1.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://www.cups.org/software/"
|
(uri (list (string-append "https://www.cups.org/software/"
|
||||||
version "/cups-" version "-source.tar.bz2"))
|
version "/cups-"
|
||||||
|
version "-source.tar.gz")
|
||||||
|
(string-append "https://github.com/apple/cups/releases"
|
||||||
|
"/download/release-" version
|
||||||
|
"/cups-" version "-source.tar.gz")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1jfjqsw9l7jbn5kb9i96k0wj12kjdbgx0rd8157dif22hi0kh0ms"))))
|
"13bjxw256wd1nff22vj2z25mdhllj2h6d9xypsg55b40661zs52b"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
|
@ -151,7 +155,7 @@ filters for the PDF-centric printing workflow introduced by OpenPrinting.")
|
||||||
(inputs
|
(inputs
|
||||||
`(("zlib" ,zlib)
|
`(("zlib" ,zlib)
|
||||||
("gnutls" ,gnutls)))
|
("gnutls" ,gnutls)))
|
||||||
(home-page "http://www.cups.org")
|
(home-page "https://www.cups.org")
|
||||||
(synopsis "The Common Unix Printing System")
|
(synopsis "The Common Unix Printing System")
|
||||||
(description
|
(description
|
||||||
"CUPS is a printing system that uses the Internet Printing
|
"CUPS is a printing system that uses the Internet Printing
|
||||||
|
|
Loading…
Reference in New Issue