guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: cups-filters: Add coreutils and sed to wrapped PATH.


From: guix-commits
Subject: 01/02: gnu: cups-filters: Add coreutils and sed to wrapped PATH.
Date: Thu, 20 Jul 2023 17:27:29 -0400 (EDT)

apteryx pushed a commit to branch core-updates
in repository guix.

commit cb526989d14bdeb2fe31d1286cf53e606243bb1e
Author: Emmanuel Beffara <manu@beffara.org>
AuthorDate: Thu Jul 20 16:51:25 2023 -0400

    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>
---
 gnu/packages/cups.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm
index 5791d4994a..a707006c3b 100644
--- a/gnu/packages/cups.scm
+++ b/gnu/packages/cups.scm
@@ -201,9 +201,11 @@ driver is known to work with these printers:
                       (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
@@ -211,6 +213,7 @@ driver is known to work with these printers:
            pkg-config))
     (inputs
      (list avahi
+           coreutils
            fontconfig
            freetype
            font-dejavu                  ; also needed by test suite
@@ -225,6 +228,7 @@ driver is known to work with these printers:
            glib
            qpdf
            poppler
+           sed
            cups-minimal))
     (home-page "https://wiki.linuxfoundation.org/openprinting/cups-filters";)
     (synopsis "OpenPrinting CUPS filters and backends")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]