diff options
author | Raghav Gururajan <raghavgururajan@disroot.org> | 2020-08-17 01:32:50 -0400 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-08-19 19:04:04 +0200 |
commit | 38bb3b17220ae28d9443b0de0a8708d2d4d1b9f7 (patch) | |
tree | f3ba65f92f5a7f88db72e7c68376638c8272cd27 /gnu | |
parent | 65d11b39fbc662607dd8b40e150b367bd74b7d51 (diff) | |
download | guix-38bb3b17220ae28d9443b0de0a8708d2d4d1b9f7.tar.gz |
gnu: libsoup: Include python phases.
* gnu/packages/gnome.scm (libsoup) [arguments]: Modify. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
Diffstat (limited to 'gnu')
-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 88689a51b7..88d0026cba 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5320,6 +5320,7 @@ libxml to ease remote use of the RESTful API.") (outputs '("out" "doc")) (arguments `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas + #:python? #t ; To wrap binaries #:configure-flags (list "-Dgtk_doc=true") @@ -5412,8 +5413,8 @@ GObjects and the GLib main loop, to integrate well with GNOME applications.") (build-system meson-build-system) (outputs '("out" "doc")) (arguments - `(#:glib-or-gtk? #t - #:python? #t + `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas + #:python? #t ; To wrap binaries #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-docbook-xml |