guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: cool-retro-term: Fix build and runtime error


From: guix-commits
Subject: branch master updated: gnu: cool-retro-term: Fix build and runtime errors.
Date: Mon, 08 Aug 2022 04:04:43 -0400

This is an automated email from the git hooks/post-receive script.

iyzsong pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 19592539e5 gnu: cool-retro-term: Fix build and runtime errors.
19592539e5 is described below

commit 19592539e54902097ec0a5a16ba38f41a687236c
Author: 宋文武 <iyzsong@member.fsf.org>
AuthorDate: Mon Aug 8 15:58:44 2022 +0800

    gnu: cool-retro-term: Fix build and runtime errors.
    
    This fixes <https://issues.guix.gnu.org/57049>.
    
    * gnu/packages/terminals.scm (cool-retro-term)
    [inputs]: Add qtquickcontrols-5.
    [arguments]: Fix 'QML2_IMPORT_PATH'.
---
 gnu/packages/terminals.scm | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 7e5016f08f..1b08ec4979 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -783,7 +783,8 @@ embedded kernel situations.")
                       (("COMMODORE_PET") "PROGGY_TINY"))))))
       (build-system gnu-build-system)
       (inputs
-       (list qtbase-5 qtdeclarative-5 qtgraphicaleffects qtquickcontrols2-5 
bash-minimal))
+       (list qtbase-5 qtdeclarative-5 qtgraphicaleffects
+             qtquickcontrols-5 qtquickcontrols2-5 bash-minimal))
       (arguments
        `(#:phases
          (modify-phases %standard-phases
@@ -805,9 +806,10 @@ embedded kernel situations.")
                      (,(string-append out qml)
                       ,@(map (lambda (i)
                                (string-append (assoc-ref inputs i) qml))
-                             '("qtdeclarative-5"
+                             '("qtdeclarative"
                                "qtgraphicaleffects"
-                               "qtquickcontrols2-5"))))))))
+                               "qtquickcontrols"
+                               "qtquickcontrols2"))))))))
            (add-after 'install 'add-alternate-name
              (lambda* (#:key outputs #:allow-other-keys)
                (let ((bin (string-append (assoc-ref outputs "out") "/bin")))



reply via email to

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