diff options
author | Raghav Gururajan <rg@raghavgururajan.name> | 2021-04-23 19:23:29 -0400 |
---|---|---|
committer | Raghav Gururajan <rg@raghavgururajan.name> | 2021-09-05 10:26:27 -0400 |
commit | a79e977a47cf2e0d61f91c52ea1455c6e3c85e6c (patch) | |
tree | 5b885ae8a6c25e66ae39bd67ad70e7a694d2b6fe | |
parent | 94730c7a6ad5c197e741e0065a0fca0a7fc4b7b4 (diff) | |
download | guix-a79e977a47cf2e0d61f91c52ea1455c6e3c85e6c.tar.gz |
gnu: pango: Use meson-0.55, as required by the project.
* gnu/packages/gtk.scm (pango)[arguments](#:meson): New argument.
-rw-r--r-- | gnu/packages/gtk.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 43e1174c7c..50b606f8e2 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -340,7 +340,8 @@ applications.") "0ijbkcs6217ygzphlpi0vajxkccifdbsl0jdjpy8wz11h9f19sin")))) (build-system meson-build-system) (arguments - '(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas + `(#:meson ,meson-0.55 ; Project requires meson-0.55.3. + #:glib-or-gtk? #t ; To wrap binaries and/or compile schemas #:phases (modify-phases %standard-phases (add-after 'unpack 'disable-cantarell-tests (lambda _ |