diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-01-14 15:05:36 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-01-14 15:05:36 +0200 |
commit | 2d12284d389df5cbe05c7162397b929d9a4dbee6 (patch) | |
tree | 37475d4ef158770f97365e78072862aa1de3ca86 /gnu/packages/gnupg.scm | |
parent | 869cda545d67ff342924780c045ff1c4efa2fd06 (diff) | |
download | guix-2d12284d389df5cbe05c7162397b929d9a4dbee6.tar guix-2d12284d389df5cbe05c7162397b929d9a4dbee6.tar.gz |
gnu: gnupg: Add TOFU support.
* gnu/packages/gnupg.scm (gnupg)[inputs]: Add sqlite.
Diffstat (limited to 'gnu/packages/gnupg.scm')
-rw-r--r-- | gnu/packages/gnupg.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index aeee440b7e..c17e64d474 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org> -;;; Copyright © 2015 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il> ;;; ;;; This file is part of GNU Guix. ;;; @@ -31,6 +31,7 @@ #:use-module (gnu packages python) #:use-module (gnu packages readline) #:use-module (gnu packages compression) + #:use-module (gnu packages databases) #:use-module (gnu packages gtk) #:use-module (gnu packages glib) #:use-module (gnu packages gnome) @@ -218,8 +219,9 @@ compatible to GNU Pth.") ("libksba" ,libksba) ("npth" ,npth) ("openldap" ,openldap) - ("zlib" ,zlib) - ("readline" ,readline))) + ("readline" ,readline) + ("sqlite" ,sqlite) + ("zlib" ,zlib))) (arguments `(#:phases (alist-cons-before |