diff options
| author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-07-14 11:04:05 +0200 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-03-02 20:31:26 +0100 |
| commit | ab91ec764218ef58b2f90788e5cb3abc8192145b (patch) | |
| tree | 11aff4e4da804e17dc822a471acb6ab5ddf636e9 | |
| parent | fe6190a687bf95970cce56199d5965f4554185ff (diff) | |
gnu: gnome-characters: Update to 46.0.
* gnu/packages/gnome.scm (gnome-characters): Update to 46.0.
[#:phases]: Add ‘fix-test-setup’.
[native-inputs]: Remove python-minimal.
Add gobject-introscpetion, xorg-server-for-tests, and xvfb-run.
| -rw-r--r-- | gnu/packages/gnome.scm | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 792464417df..dc01393e046 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2139,7 +2139,7 @@ to other formats.") (define-public gnome-characters (package (name "gnome-characters") - (version "44.0") + (version "46.0") (source (origin (method url-fetch) @@ -2148,7 +2148,7 @@ to other formats.") "/gnome-characters-" version ".tar.xz")) (sha256 (base32 - "02zm3w43lvsnld3681z9w1428pwdza2gv4k05vwsx461ih15rc85")))) + "0z42blzj4kp0vgwqdaf8fip28i3qag6yg94lk55j0j5z232y5s54")))) (build-system meson-build-system) (arguments (list @@ -2161,6 +2161,16 @@ to other formats.") "gtk_update_icon_cache: false") (("update_desktop_database: true") "update_desktop_database: false")))) + (add-after 'unpack 'fix-test-setup + (lambda _ + (substitute* "tests/meson.build" + (("'GI_TYPELIB_PATH': (.*)," all path) + (string-append "'GI_TYPELIB_PATH':" + " [" + path + ", '" + (getenv "GI_TYPELIB_PATH") + "'],"))))) (add-after 'install 'wrap (lambda* (#:key outputs #:allow-other-keys) ;; GNOME Characters needs Typelib files from GTK and @@ -2172,8 +2182,10 @@ to other formats.") (native-inputs (list gettext-minimal `(,glib "bin") + gobject-introspection pkg-config - python-minimal)) + xorg-server-for-tests + xvfb-run)) (inputs (list bash-minimal ;for wrap-program gjs |
