guix-commits
[Top][All Lists]
Advanced

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

06/06: gnu: keepassxc: Fix WRAP-QT-PROGRAM call.


From: guix-commits
Subject: 06/06: gnu: keepassxc: Fix WRAP-QT-PROGRAM call.
Date: Sat, 3 Jul 2021 09:06:55 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit cb51663a41e945cd70f9cf6c7d252c6c5136520d
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sat Jul 3 14:59:28 2021 +0200

    gnu: keepassxc: Fix WRAP-QT-PROGRAM call.
    
    * gnu/packages/password-utils.scm (keepassxc)[arguments]: Call
    WRAP-QT-PROGRAM with the expected arguments.
---
 gnu/packages/password-utils.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index b797018..0b28a18 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -148,9 +148,9 @@ human.")
        #:phases
        (modify-phases %standard-phases
          (add-after 'install 'wrap-qt
-           (lambda* (#:key outputs #:allow-other-keys)
-             (wrap-qt-program (assoc-ref outputs "out") "keepassxc")
-             #t)))))
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             (let ((out (assoc-ref outputs "out")))
+               (wrap-qt-program "keepassxc" #:output out #:inputs inputs)))))))
     (native-inputs
      `(("asciidoctor" ,ruby-asciidoctor)
        ("qttools" ,qttools)))



reply via email to

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