mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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:
parent
bcfec279af
commit
c4ac11f704
1 changed files with 3 additions and 2 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue