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

* gnu/packages/password-utils.scm (keepassxc)[arguments]: Call
WRAP-QT-PROGRAM with the expected arguments.
This commit is contained in:
Tobias Geerinckx-Rice 2021-07-03 14:59:28 +02:00
parent c4ac11f704
commit cb51663a41
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79

View File

@ -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)))