mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
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:
parent
c4ac11f704
commit
cb51663a41
1 changed files with 3 additions and 3 deletions
|
@ -148,9 +148,9 @@ (define-public keepassxc
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'install 'wrap-qt
|
(add-after 'install 'wrap-qt
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(wrap-qt-program (assoc-ref outputs "out") "keepassxc")
|
(let ((out (assoc-ref outputs "out")))
|
||||||
#t)))))
|
(wrap-qt-program "keepassxc" #:output out #:inputs inputs)))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("asciidoctor" ,ruby-asciidoctor)
|
`(("asciidoctor" ,ruby-asciidoctor)
|
||||||
("qttools" ,qttools)))
|
("qttools" ,qttools)))
|
||||||
|
|
Loading…
Reference in a new issue