mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: cups-filters: Add coreutils and sed to wrapped PATH.
* gnu/packages/cups.scm (cups-filters) [arguments]: Add coreutils and sed to PATH in wrap-filters phase. [inputs]: Add coreutils and sed. Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
85662a15a8
commit
a51507e582
1 changed files with 5 additions and 1 deletions
|
@ -199,9 +199,11 @@ (define-public cups-filters
|
|||
(wrap-program file
|
||||
`("PATH" ":" prefix
|
||||
(,(string-append
|
||||
#$(this-package-input "coreutils") "/bin:"
|
||||
#$(this-package-input "ghostscript-with-cups")
|
||||
"/bin:"
|
||||
#$(this-package-input "grep") "/bin")))))
|
||||
#$(this-package-input "grep") "/bin:"
|
||||
#$(this-package-input "sed") "/bin")))))
|
||||
(find-files (string-append #$output
|
||||
"/lib/cups/filter"))))))))
|
||||
(native-inputs
|
||||
|
@ -212,6 +214,7 @@ (define-public cups-filters
|
|||
pkg-config)))
|
||||
(inputs
|
||||
(list avahi
|
||||
coreutils
|
||||
fontconfig
|
||||
freetype
|
||||
font-dejavu ; also needed by test suite
|
||||
|
@ -226,6 +229,7 @@ (define-public cups-filters
|
|||
glib
|
||||
qpdf
|
||||
poppler
|
||||
sed
|
||||
cups-minimal))
|
||||
(home-page "https://wiki.linuxfoundation.org/openprinting/cups-filters")
|
||||
(synopsis "OpenPrinting CUPS filters and backends")
|
||||
|
|
Loading…
Reference in a new issue