diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-01-14 22:21:54 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-01-14 22:39:24 +0100 |
commit | 3969dc459652d27e26623d23d6d980824af9e3f7 (patch) | |
tree | f8e8fb8bcb94b6c37c0d8cd5f302d3dfcbb26d0d | |
parent | e7ad192de008a6a21638def6eb973b9cc0c91116 (diff) |
gnu: dia: Fix build.
Fixes <https://issues.guix.gnu.org/53182>.
Reported by Ivan Vilata i Balaguer <ivan@selidor.net>.
* gnu/packages/gnome.scm (dia)[arguments]: New field.
[inputs]: Comment out POPPLER.
-rw-r--r-- | gnu/packages/gnome.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 1753a429ca..d79aa38283 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1931,12 +1931,16 @@ and system administrators.") (base32 "04r8dspa6nmicrifhi3sh46hqvyy88hzq37xx99q3q1mwsrpmwy8")))) (build-system meson-build-system) + (arguments `(#:meson ,meson-0.59)) (inputs (list graphene gtk+-2 libxml2 libxslt - poppler + + ;; XXX: PDF plugin fails to build with poppler 21.07.0. + ;; poppler + ;; Without Python 2, build fails: plug-ins/python/meson.build:4:0: ;; ERROR: Unknown method "dependency" in object. python-2)) |