diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-10 19:51:02 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-22 02:00:00 +0200 |
commit | 0463150402f1395736224824431062944f0fe77f (patch) | |
tree | ad46fb6f0f60ca3ae5ad9d0898b21f9f46d8137b /gnu/packages/cups.scm | |
parent | 79de30ac8d8dbfe0e708947e8e4603a144cee29f (diff) |
gnu: cups-filters: Remove input labels.
* gnu/packages/cups.scm (cups-filters)[inputs]: Remove input labels.
[arguments]: Adjust accordingly.
Diffstat (limited to 'gnu/packages/cups.scm')
-rw-r--r-- | gnu/packages/cups.scm | 39 |
1 files changed, 20 insertions, 19 deletions
diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm index 659da2d0e5..ace7527590 100644 --- a/gnu/packages/cups.scm +++ b/gnu/packages/cups.scm @@ -177,7 +177,7 @@ driver is known to work with these printers: #$(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 @@ driver is known to work with these printers: (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 |