diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2015-12-13 13:02:14 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2015-12-13 13:02:14 +0200 |
commit | 34b979b903cb15b54a5b3f1fb6f15b8d327031ff (patch) | |
tree | 94129e4ef1283a1f2af62cd652e39891232b239f /gnu/packages/gnome.scm | |
parent | 017d779c2256804c5ea6c96ce123cecd2c6af8e9 (diff) | |
download | guix-34b979b903cb15b54a5b3f1fb6f15b8d327031ff.tar guix-34b979b903cb15b54a5b3f1fb6f15b8d327031ff.tar.gz |
gnu: seahorse: Add support for keyservers, gnupg2 and ldap.
* gnu/packages/gnome.scm (seahorse): Do it.
[inputs]: Remove gnupg-1, add gnupg, openldap, libsoup.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index f943dc0adb..51f2341d62 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -58,6 +58,7 @@ #:use-module (gnu packages gtk) #:use-module (gnu packages gperf) #:use-module (gnu packages guile) + #:use-module (gnu packages openldap) #:use-module (gnu packages pdf) #:use-module (gnu packages polkit) #:use-module (gnu packages popt) @@ -1630,10 +1631,12 @@ engineering.") (inputs `(("gtk+" ,gtk+) ("gcr" ,gcr) - ("gnupg" ,gnupg-1) + ("gnupg" ,gnupg) ("gpgme" ,gpgme) + ("openldap" ,openldap) ("openssh" ,openssh) - ("libsecret" ,libsecret))) + ("libsecret" ,libsecret) + ("libsoup" ,libsoup))) (native-inputs `(("intltool" ,intltool) ("glib:bin" ,glib "bin") |