diff options
author | jgart <jgart@dismail.de> | 2021-04-19 01:33:30 -0400 |
---|---|---|
committer | Leo Prikler <leo.prikler@student.tugraz.at> | 2021-04-19 11:46:55 +0200 |
commit | 0e5c5ec52c42788e02a58154cb7ea3b5c7bad447 (patch) | |
tree | 0cf5929518c2493c118952886898cd9b2f17d27c | |
parent | 3daadd776c957592b02903eec5d36d1bbdc93bbd (diff) |
gnu: libgnome-games-support: Update to 1.7.1.
* gnu/packages/gnome.scm (libgnome-games-support): Update to 1.7.1.
Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at>
-rw-r--r-- | gnu/packages/gnome.scm | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 34f5078581..ccb0814de7 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -6002,7 +6002,7 @@ queries upon that data.") (define-public libgnome-games-support (package (name "libgnome-games-support") - (version "1.4.4") + (version "1.7.1") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/libgnome-games-support/" @@ -6010,16 +6010,17 @@ queries upon that data.") "libgnome-games-support-" version ".tar.xz")) (sha256 (base32 - "1zkbmnrn161p74qg6jhsn9f66yjjzxfm13pl1klv9av8k1bax9pq")))) - (build-system gnu-build-system) + "11g1r3ppb9v8m3anks9gxf7fv1x38vmjiya3lr7zjjv328pb69d6")))) + (build-system meson-build-system) (arguments - '(#:phases - (modify-phases %standard-phases - (add-before 'check 'pre-check - (lambda _ - ;; Tests require a writable HOME. - (setenv "HOME" (getcwd)) - #t))))) + '(#:glib-or-gtk? #t + #:phases + (modify-phases %standard-phases + (add-before 'check 'pre-check + (lambda _ + ;; Tests require a writable HOME. + (setenv "HOME" (getcwd)) + #t))))) (native-inputs `(("intltool" ,intltool) ("pkg-config" ,pkg-config) |