mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: cups-filters: Remove input labels.
* gnu/packages/cups.scm (cups-filters)[inputs]: Remove input labels. [arguments]: Adjust accordingly.
This commit is contained in:
parent
79de30ac8d
commit
0463150402
1 changed files with 20 additions and 19 deletions
|
@ -177,7 +177,7 @@ (define-public cups-filters
|
|||
#$(this-package-input "font-dejavu")
|
||||
"/share/fonts/truetype/DejaVuSans.ttf")
|
||||
(string-append "--with-gs-path="
|
||||
#$(this-package-input "ghostscript")
|
||||
#$(this-package-input "ghostscript-with-cups")
|
||||
"/bin/gsc")
|
||||
(string-append "--with-shell="
|
||||
(assoc-ref %build-inputs "bash")
|
||||
|
@ -203,30 +203,31 @@ (define-public cups-filters
|
|||
(wrap-program file
|
||||
`("PATH" ":" prefix
|
||||
(,(string-append
|
||||
#$(this-package-input "ghostscript") "/bin:"
|
||||
#$(this-package-input "ghostscript-with-cups")
|
||||
"/bin:"
|
||||
#$(this-package-input "grep") "/bin")))))
|
||||
(find-files (string-append #$output
|
||||
"/lib/cups/filter"))))))))
|
||||
(native-inputs
|
||||
(list `(,glib "bin") ; for gdbus-codegen
|
||||
(list `(,glib "bin") ; for gdbus-codegen
|
||||
pkg-config))
|
||||
(inputs
|
||||
`(("avahi" ,avahi)
|
||||
("fontconfig" ,fontconfig)
|
||||
("freetype" ,freetype)
|
||||
("font-dejavu" ,font-dejavu) ; also needed by test suite
|
||||
("ghostscript" ,ghostscript/cups)
|
||||
("grep" ,grep)
|
||||
("ijs" ,ijs)
|
||||
("dbus" ,dbus)
|
||||
("lcms" ,lcms)
|
||||
("libjpeg" ,libjpeg-turbo)
|
||||
("libpng" ,libpng)
|
||||
("libtiff" ,libtiff)
|
||||
("glib" ,glib)
|
||||
("qpdf" ,qpdf)
|
||||
("poppler" ,poppler)
|
||||
("cups-minimal" ,cups-minimal)))
|
||||
(list avahi
|
||||
fontconfig
|
||||
freetype
|
||||
font-dejavu ; also needed by test suite
|
||||
ghostscript/cups
|
||||
grep
|
||||
ijs
|
||||
dbus
|
||||
lcms
|
||||
libjpeg-turbo
|
||||
libpng
|
||||
libtiff
|
||||
glib
|
||||
qpdf
|
||||
poppler
|
||||
cups-minimal))
|
||||
(home-page "https://wiki.linuxfoundation.org/openprinting/cups-filters")
|
||||
(synopsis "OpenPrinting CUPS filters and backends")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue