Archived
1
0
Fork 0

gnu: brlaser: Update to 6-1.9d7ddda.

* gnu/packages/printers.scm (brlaser): Update to 6-1.9d7ddda.
This commit is contained in:
Ricardo Wurmus 2021-01-02 15:30:19 +01:00
parent d9010a35bf
commit 7d05575ef5
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2019, 2021 Ricardo Wurmus <rekado@elephly.net>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -75,34 +75,36 @@ with Graphtec and Sihouette plotting cutters using an SVG file as its input.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public brlaser (define-public brlaser
(package (let ((commit "9d7ddda8383bfc4d205b5e1b49de2b8bcd9137f1")
(name "brlaser") (revision "1"))
(version "6") (package
(source (origin (name "brlaser")
(method git-fetch) (version (git-version "6" revision commit))
(uri (git-reference (source (origin
(url "https://github.com/pdewacht/brlaser") (method git-fetch)
(commit (string-append "v" version)))) (uri (git-reference
(file-name (git-file-name name version)) (url "https://github.com/pdewacht/brlaser")
(sha256 (commit commit)))
(base32 (file-name (git-file-name name version))
"1995s69ksq1fz0vb34v0ndiqncrinbrlpmp70rkl6az7kag99s80")))) (sha256
(build-system cmake-build-system) (base32
(arguments "1drh0nk7amn9a8wykki4l9maqa4vy7vwminypfy1712alwj31nd4"))))
`(#:configure-flags (build-system cmake-build-system)
(list (string-append "-DCUPS_DATA_DIR=" (arguments
(assoc-ref %outputs "out") `(#:configure-flags
"/share/cups") (list (string-append "-DCUPS_DATA_DIR="
(string-append "-DCUPS_SERVER_BIN=" (assoc-ref %outputs "out")
(assoc-ref %outputs "out") "/share/cups")
"/lib/cups")))) (string-append "-DCUPS_SERVER_BIN="
(inputs (assoc-ref %outputs "out")
`(("ghostscript" ,ghostscript) "/lib/cups"))))
("cups" ,cups) (inputs
("zlib" ,zlib))) `(("ghostscript" ,ghostscript)
(home-page "https://github.com/pdewacht/brlaser") ("cups" ,cups)
(synopsis "Brother laser printer driver") ("zlib" ,zlib)))
(description "Brlaser is a CUPS driver for Brother laser printers. This (home-page "https://github.com/pdewacht/brlaser")
(synopsis "Brother laser printer driver")
(description "Brlaser is a CUPS driver for Brother laser printers. This
driver is known to work with these printers: driver is known to work with these printers:
@enumerate @enumerate
@ -137,4 +139,4 @@ driver is known to work with these printers:
@item Brother MFC-L2710DW series @item Brother MFC-L2710DW series
@item Lenovo M7605D @item Lenovo M7605D
@end enumerate") @end enumerate")
(license license:gpl2+))) (license license:gpl2+))))