guix-commits
[Top][All Lists]
Advanced

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

06/07: gnu: akonadi: Remove references to '%outputs' and '%build-inputs'


From: guix-commits
Subject: 06/07: gnu: akonadi: Remove references to '%outputs' and '%build-inputs'.
Date: Sat, 27 Nov 2021 05:51:24 -0500 (EST)

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

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

    gnu: akonadi: Remove references to '%outputs' and '%build-inputs'.
    
    * gnu/packages/kde-pim.scm (akonadi)[arguments]: Remove references to
    '%outputs' and '%build-inputs'.
---
 gnu/packages/kde-pim.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index d0e67fa..b63f72f 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -90,10 +90,10 @@
        #:phases
        (modify-phases (@ (guix build qt-build-system) %standard-phases)
          (add-before 'configure 'add-definitions
-           (lambda _
-             (let ((out (assoc-ref %outputs "out"))
-                   (mysql (assoc-ref %build-inputs "mysql"))
-                   (pgsql (assoc-ref %build-inputs "postgresql")))
+           (lambda* (#:key outputs inputs #:allow-other-keys)
+             (let ((out   (assoc-ref outputs "out"))
+                   (mysql (assoc-ref inputs "mysql"))
+                   (pgsql (assoc-ref inputs "postgresql")))
                (with-output-to-file "CMakeLists.txt.new"
                  (lambda _
                    (display



reply via email to

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