mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: pinentry-rofi: Update to 2.0.3.
* gnu/packages/gnupg.scm (pinentry-rofi): Update to 2.0.3. [arguments]: Add make installcheck phase to verify the installed artifact. [native-inputs]: Add autoconf-archive. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
f1fada8ace
commit
21f1f55012
1 changed files with 7 additions and 3 deletions
|
@ -894,7 +894,7 @@ (define-public pinentry-efl
|
|||
(define-public pinentry-rofi
|
||||
(package
|
||||
(name "pinentry-rofi")
|
||||
(version "2.0.2")
|
||||
(version "2.0.3")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
|
@ -902,7 +902,7 @@ (define-public pinentry-rofi
|
|||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "14rbz32ykc8pz7gglbvxm3pcgabr7xdnddar6k24icd5xk9mr4rp"))))
|
||||
(base32 "0kjzvgni9srl8h5c52pqrvgdxs6avv0nhgk19apd97sx10qdwdhk"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:modules
|
||||
|
@ -923,9 +923,13 @@ (define-public pinentry-rofi
|
|||
(wrap-program
|
||||
(string-append bin "pinentry-rofi")
|
||||
(list "PATH" ":" 'prefix `(,rofi-bin)))
|
||||
#t))))))))
|
||||
#t)))))
|
||||
(add-after 'compress-documentation 'installcheck
|
||||
(lambda* rest
|
||||
(invoke "make" "installcheck"))))))
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("autoconf-archive" ,autoconf-archive)
|
||||
("automake" ,automake)
|
||||
("pkg-config" ,pkg-config)
|
||||
("texinfo" ,texinfo)))
|
||||
|
|
Loading…
Reference in a new issue