diff options
author | Raghav Gururajan <raghavgururajan@disroot.org> | 2020-01-10 08:33:45 -0500 |
---|---|---|
committer | Guix Patches Tester <> | 2020-01-12 09:45:43 +0000 |
commit | 4dbc352dd9ea12e8717a871b6e8b851b200b8e50 (patch) | |
tree | 9f5e0cef922f9bb037f925301ee029734557f542 | |
parent | d75a0cd98649c610c8c6ed05011233a49af156e9 (diff) | |
download | patches-4dbc352dd9ea12e8717a871b6e8b851b200b8e50.tar patches-4dbc352dd9ea12e8717a871b6e8b851b200b8e50.tar.gz |
gnu: gnome-contacts: Propagate evolution-data-server and recategorize some inputs.series-2603
* gnu/packages/gnome.scm (gnome-contacts): Propagate evolution-data-server and recategorize some inputs.
-rw-r--r-- | gnu/packages/gnome.scm | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 2e5f129a07..ef4c0fda27 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -732,7 +732,8 @@ commonly used macros.") "17g1gh8yj58cfpdx69h2szivlbjgvv982kmhnkkh0i5bwj0zs2yy")))) (build-system meson-build-system) (arguments - `(#:phases + `(#:glib-or-gtk? #t + #:phases (modify-phases %standard-phases (add-after 'unpack 'generate-vapis (lambda* (#:key inputs #:allow-other-keys) @@ -745,26 +746,26 @@ commonly used macros.") (string-append goa "/share/gir-1.0/Goa-1.0.gir")) #t))))) (native-inputs - `(("glib:bin" ,glib "bin") + `(("gettext" ,gettext-minimal) + ("glib:bin" ,glib "bin") + ("gobject-introspection" ,gobject-introspection) ("gtk+:bin" ,gtk+ "bin") ("pkg-config" ,pkg-config))) (inputs `(("cheese" ,cheese) ("docbook-xml" ,docbook-xml) ("dockbook-xsl" ,docbook-xsl) - ("evolution-data-server" ,evolution-data-server) - ("gettext" ,gettext-minimal) ("gnome-desktop" ,gnome-desktop) ("gnome-online-accounts:lib" ,gnome-online-accounts "lib") - ("gobject-introspection" ,gobject-introspection) ("gst-plugins-base" ,gst-plugins-base) - ("gtk+" ,gtk+) + ;;("gtk+" ,gtk+) ("libgee" ,libgee) ("libxslt" ,libxslt) ("telepathy-glib" ,telepathy-glib) ("vala" ,vala))) (propagated-inputs - `(("folks", folks) + `(("evolution-data-server" ,evolution-data-server) + ("folks", folks) ("telepathy-mission-control" ,telepathy-mission-control))) (synopsis "GNOME's integrated address book") (description |