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

* gnu/packages/security-token.scm (ausweisapp2)[arguments]: Call
WRAP-QT-PROGRAM with the expected arguments.
This commit is contained in:
Tobias Geerinckx-Rice 2021-07-03 14:58:39 +02:00
parent bcfec279af
commit c4ac11f704
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -758,8 +758,9 @@ (define-public ausweisapp2
#:phases
(modify-phases %standard-phases
(add-after 'install 'wrap-qt
(lambda* (#:key outputs #:allow-other-keys)
(wrap-qt-program (assoc-ref outputs "out") "AusweisApp2"))))))
(lambda* (#:key inputs outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(wrap-qt-program "AusweisApp2" #:output out #:inputs inputs)))))))
(home-page "https://github.com/Governikus/AusweisApp2")
(synopsis
"Authentication program for German ID cards and residence permits")