diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-11-18 22:21:31 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-11-18 22:21:31 +0100 |
commit | 8362046a06ff0ee16599e6041dd0129241b51878 (patch) | |
tree | 038ba78642607068221b0343fa8f7c117f8a68d5 /gnu | |
parent | 98d864e31305e15e1aab37c46a2a34ff604e30ce (diff) | |
download | guix-8362046a06ff0ee16599e6041dd0129241b51878.tar guix-8362046a06ff0ee16599e6041dd0129241b51878.tar.gz |
gnu: gnupg@2.2.32: Hide.
* gnu/packages/gnupg.scm (gnupg-2.2.32)[properties]: New field.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnupg.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index cd2455103a..ddfc6dee69 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -352,6 +352,13 @@ libskba (working with X.509 certificates and CMS data).") (package (inherit gnupg) (version "2.2.32") + + ;; Hide this version because packages like 'emacs-pinentry' propagate the + ;; default GnuPG and "guix install gnupg emacs-pinentry" would fail with a + ;; collision error. + (properties `((hidden? . #t) + ,@(package-properties gnupg))) + (source (origin (inherit (package-source gnupg)) (uri (string-append "mirror://gnupg/gnupg/gnupg-" version |