diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-10-20 10:39:12 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:32 +0200 |
commit | 94d0531b33750fd112cfe1a9dd600860d6db4ae8 (patch) | |
tree | 47abbbf205468a8863faa0fc69a397d28719b7f2 | |
parent | 408d06ca9867cbf6080404544d17ae9a05fb54c7 (diff) | |
download | guix-94d0531b33750fd112cfe1a9dd600860d6db4ae8.tar.gz guix-94d0531b33750fd112cfe1a9dd600860d6db4ae8.zip |
gnu: pinentry-rofi: Add bash-minimal to inputs.
* gnu/packages/gnupg.scm (pinentry-rofi): Delete trailing #t.
[inputs]: Add bash-minimal.
Change-Id: I65cfda00921a184d9f0644fa28934b3c29551f4b
-rw-r--r-- | gnu/packages/gnupg.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index d9045ff95e..f933c82d9a 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -1009,14 +1009,13 @@ passphrase when @code{gpg} is run and needs it."))) (("." ".." version) (wrap-program (string-append bin "pinentry-rofi") - (list "PATH" ":" 'prefix `(,rofi-bin))) - #t))))) + (list "PATH" ":" 'prefix `(,rofi-bin)))))))) (add-after 'compress-documentation 'installcheck (lambda* rest (invoke "make" "installcheck")))))) (native-inputs (list autoconf autoconf-archive automake pkg-config texinfo)) - (inputs (list guile-3.0 rofi)) + (inputs (list bash-minimal guile-3.0 rofi)) (synopsis "Rofi GUI for GnuPG's passphrase input") (description "Pinentry-rofi is a simple graphical user interface for passphrase or PIN when required by @code{gpg} or other software. It is using |