diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2022-09-19 12:56:15 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-10-10 11:16:07 +0200 |
commit | 75e24eec1ed9772dbcb6737270076eca571dc4ea (patch) | |
tree | d348fb23c0b57ccf68dc9343935a9cc105ff67c1 /gnu/packages/gtk.scm | |
parent | 4133e50026c9f2fbc4fb52553d7538da00daea9a (diff) |
gnu: gtk: Use librsvg-2.40 for non-x86_64.
* gnu/packages/gtk.scm (gtk)[propagated-inputs]:
Use librsvg-2.40 for non-x86_64.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/gtk.scm')
-rw-r--r-- | gnu/packages/gtk.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 879cf44d67..faf4d6f7eb 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -31,6 +31,7 @@ ;;; Copyright © 2021 Wamm K. D. <jaft.r@outlook.com> ;;; Copyright © 2022 Zhu Zihao <all_but_last@163.com> ;;; Copyright © 2022 Benjamin Slade <slade@lambda-y.net> +;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1340,7 +1341,9 @@ application suites.") ;; Following dependencies are referenced in .pc files. (list cairo fontconfig - librsvg-bootstrap + (if (target-x86-64?) + librsvg-bootstrap + librsvg-2.40) glib graphene libepoxy |