diff options
author | Kei Kebreau <kei@openmailbox.org> | 2017-06-13 16:47:08 -0400 |
---|---|---|
committer | Kei Kebreau <kei@openmailbox.org> | 2017-06-16 11:09:27 -0400 |
commit | 6d7273a04d4fb4e9d15b811024e137c8332d4a5e (patch) | |
tree | a5a999f6815a72ab943f849fb8e6765521468c48 | |
parent | 99dd2af99eb0e6201ce062ca17d34977063f89ec (diff) | |
download | guix-6d7273a04d4fb4e9d15b811024e137c8332d4a5e.tar guix-6d7273a04d4fb4e9d15b811024e137c8332d4a5e.tar.gz |
gnu: grilo: Add liboauth support.
* gnu/packages/gnome.scm (grilo)[inputs]: Add liboauth and cyrus-sasl.
-rw-r--r-- | gnu/packages/gnome.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 44b5c20b31..70a2c8357e 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3342,10 +3342,11 @@ as possible!") ("pkg-config" ,pkg-config) ("gobject-introspection" ,gobject-introspection))) (inputs - `(("glib" ,glib) + `(("cyrus-sasl" ,cyrus-sasl) + ("glib" ,glib) ("gtk+" ,gtk+) ("libxml2" ,libxml2) - ;; XXX TODO: Add oauth + ("liboauth" ,liboauth) ("libsoup" ,libsoup) ("nettle" ,nettle) ("totem-pl-parser" ,totem-pl-parser))) |