diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-09-01 02:00:33 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-09-02 22:31:11 +0200 |
commit | c4de5091a957317695ab234c999440a4cb1e063a (patch) | |
tree | debfc2d7ec914ab6023438de612259e9943d00ad | |
parent | 6596e495f3f60b0d1e8b25c89911e655d6f8d438 (diff) | |
download | guix-c4de5091a957317695ab234c999440a4cb1e063a.tar.gz guix-c4de5091a957317695ab234c999440a4cb1e063a.zip |
gnu: gitg: Fix build.
* gnu/packages/gnome.scm (gitg)[arguments]<#:meson>: Use meson-1.5.
<#:build-type>: Set to “release”.
-rw-r--r-- | gnu/packages/gnome.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 53e5a8f3ea..5e7f27fe69 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -12353,7 +12353,9 @@ higher level porcelain stuff.") (build-system meson-build-system) (arguments (list + #:meson meson-1.5 ; XXX: breaks with Meson 1.2 #:glib-or-gtk? #t + #:build-type "release" ; don't look at -Wformat… #:phases #~(modify-phases %standard-phases (add-after 'unpack 'disable-post-install-partially |