guix-commits
[Top][All Lists]
Advanced

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

07/07: gnu: krunner: Remove reference to '%build-inputs'.


From: guix-commits
Subject: 07/07: gnu: krunner: Remove reference to '%build-inputs'.
Date: Sat, 27 Nov 2021 05:51:25 -0500 (EST)

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

commit 1b8a18b629dcde9b6288fbce4d130b51dfb69143
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sat Nov 27 11:46:46 2021 +0100

    gnu: krunner: Remove reference to '%build-inputs'.
    
    * gnu/packages/kde-frameworks.scm (krunner)[arguments]: Replace reference
    to '%build-inputs' by 'inputs' keyword argument.
---
 gnu/packages/kde-frameworks.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 9b0264e..ef304dd 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -3067,12 +3067,12 @@ to easily extend the contacts collection.")
          (add-after 'unpack 'fix-paths-for-test
            ;; This test tries to access paths like /home, /usr/bin and /bin/ls
            ;; which don't exist in the build-container. Change to existing 
paths.
-           (lambda _
+           (lambda* (#:key inputs #:allow-other-keys)
              (substitute* "autotests/runnercontexttest.cpp"
                (("/home\"") "/tmp\"") ;; single path-part
                (("//usr/bin\"") (string-append (getcwd) "\"")) ;; multiple 
path-parts
                (("/bin/ls")
-                (search-input-file %build-inputs "/bin/ls")))))
+                (search-input-file inputs "/bin/ls")))))
          (add-before 'check 'check-setup
            (lambda _
              (setenv "HOME" (getcwd))



reply via email to

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