gnu: hplip: Update to 3.19.8.
* gnu/packages/cups.scm (hplip): Update to 3.19.8. [arguments]: Remove type mismatch fix.
This commit is contained in:
parent
8cb2f0ff2b
commit
08e46d8d05
|
@ -5,7 +5,7 @@
|
||||||
;;; Copyright © 2016 Danny Milosavljevic <dannym@scratchpost.org>
|
;;; Copyright © 2016 Danny Milosavljevic <dannym@scratchpost.org>
|
||||||
;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2017 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2017 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -419,14 +419,14 @@ should only be used as part of the Guix cups-pk-helper service.")
|
||||||
(define-public hplip
|
(define-public hplip
|
||||||
(package
|
(package
|
||||||
(name "hplip")
|
(name "hplip")
|
||||||
(version "3.18.9")
|
(version "3.19.8")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://sourceforge/hplip/hplip/" version
|
(uri (string-append "mirror://sourceforge/hplip/hplip/" version
|
||||||
"/hplip-" version ".tar.gz"))
|
"/hplip-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0g3q5mm2crjyc1z4z6gv4lam6sc5d3diz704djrnpqadk4q3h290"))
|
"0cmshi5dkmc1n5yiahhp0cv5p94zg61018piiqa2sna10ahgx1d3"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(patches (search-patches "hplip-remove-imageprocessor.patch"))
|
(patches (search-patches "hplip-remove-imageprocessor.patch"))
|
||||||
(snippet
|
(snippet
|
||||||
|
@ -439,10 +439,6 @@ should only be used as part of the Guix cups-pk-helper service.")
|
||||||
(elf-file? file))))
|
(elf-file? file))))
|
||||||
(delete-file "prnt/hpcups/ImageProcessor.h")
|
(delete-file "prnt/hpcups/ImageProcessor.h")
|
||||||
|
|
||||||
;; Fix type mismatch.
|
|
||||||
(substitute* "prnt/hpcups/genPCLm.cpp"
|
|
||||||
(("boolean") "bool"))
|
|
||||||
|
|
||||||
;; Install binaries under libexec/hplip instead of
|
;; Install binaries under libexec/hplip instead of
|
||||||
;; share/hplip; that'll at least ensure they get stripped.
|
;; share/hplip; that'll at least ensure they get stripped.
|
||||||
;; It's not even clear that they're of any use though...
|
;; It's not even clear that they're of any use though...
|
||||||
|
|
Loading…
Reference in New Issue