diff options
author | Raghav Gururajan <raghavgururajan@disroot.org> | 2020-08-17 02:14:14 -0400 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-08-19 19:04:07 +0200 |
commit | b5d192d23e9c86f16d81886724ed53eb2866f300 (patch) | |
tree | f9ae0a9849bfd3e9d6b1d7d84381dab5c2ba3b87 | |
parent | 39f27452a00a8d7524f928a77e6defcad4bf4f23 (diff) | |
download | guix-b5d192d23e9c86f16d81886724ed53eb2866f300.tar.gz |
gnu: evolution-data-server: Include glib-or-gtk and python phases.
* gnu/packages/gnome.scm (evolution-data-server) [arguments]: Modify. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
-rw-r--r-- | gnu/packages/gnome.scm | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 434f010540..35f4a83ed1 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -8702,14 +8702,8 @@ are exposed as GVolumes, and so on.") (build-system cmake-build-system) (outputs '("out" "doc")) (arguments - `(#:imported-modules - (,@%cmake-build-system-modules - (guix build glib-or-gtk-build-system)) - #:modules - ((guix build cmake-build-system) - ((guix build glib-or-gtk-build-system) - #:prefix glib-or-gtk:) - (guix build utils)) + `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas + #:python? #t ; To wrap binaries #:configure-flags (list (string-append "-DSENDMAIL_PATH=" @@ -8780,11 +8774,7 @@ are exposed as GVolumes, and so on.") (rename-file (string-append out "/share/gtk-doc") (string-append doc "/share/gtk-doc")) - #t))) - (add-after 'move-doc 'glib-or-gtk-compile-schemas - (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas)) - (add-after 'glib-or-gtk-compile-schemas 'glib-or-gtk-wrap - (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))))) + #t)))))) (native-inputs `(("docbook-xml" ,docbook-xml-4.1.2) ("glib:bin" ,glib "bin") |