diff options
author | Raghav Gururajan <raghavgururajan@disroot.org> | 2020-08-17 04:29:58 -0400 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-08-19 19:04:08 +0200 |
commit | 53a9c65335274b294d13bdda382e4ed70d4911e0 (patch) | |
tree | 2d56167ec8bc66902966b390b13142b70fd03774 | |
parent | 215e68ec60204db0b45df45c5d951f728a1b5657 (diff) | |
download | guix-53a9c65335274b294d13bdda382e4ed70d4911e0.tar.gz |
gnu: gnome-characters: Remove custom typelib wrap and add python phases.
* gnu/packages/gnome.scm (gnome-characters) [arguments]: Modify. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
-rw-r--r-- | gnu/packages/gnome.scm | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 271e6e5937..5dbc6fac54 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2308,6 +2308,7 @@ documents.") (build-system meson-build-system) (arguments `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas + #:python? #t ; To wrap binaries #:phases (modify-phases %standard-phases (add-before 'configure 'skip-gtk-update-icon-cache @@ -2315,15 +2316,6 @@ documents.") (substitute* "meson_post_install.py" (("gtk-update-icon-cache") "true")) - #t)) - (add-after 'install 'wrap - (lambda* (#:key outputs #:allow-other-keys) - ;; GNOME Characters needs Typelib files from GTK and - ;; gnome-desktop. - (wrap-program - (string-append (assoc-ref outputs "out") - "/bin/gnome-characters") - `("GI_TYPELIB_PATH" ":" prefix (,(getenv "GI_TYPELIB_PATH")))) #t))))) (native-inputs `(("gettext" ,gettext-minimal) |