diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-09-19 18:15:20 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-09-19 18:15:20 +0300 |
commit | c6dde8b085002e68eebd09fb0f24baa86f1fa030 (patch) | |
tree | 0c861503a3f63b080ae2a9b8baec4da891f32b63 /gnu | |
parent | 62da6c6169d6a41508cd2c03d86ac350610d2827 (diff) |
gnu: gtk: Use architecture appropriate librsvg.
* gnu/packages/gtk.scm (gtk)[propagated-inputs]: When building for
x86_64-linux use librsvg-bootstrap, otherwise use librsvg-2.40.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gtk.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 8d72205cbc..c55767d4b0 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1340,7 +1340,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 |