gnu: inkscape: Always use imagemagick as an input.

* gnu/packages/inkscape.scm (inkscape)[native-inputs]: Replace inherited
imagemagick/stable with imagemagick.

Change-Id: I6b25002deeeaa81fab6de4e181d2425fe7342aba
This commit is contained in:
Efraim Flashner 2024-01-25 12:15:13 +02:00 committed by Ludovic Courtès
parent db3367f952
commit 57802fa009
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -7,7 +7,7 @@
;;; Copyright © 2020, 2021, 2022, 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2020 Boris A. Dekshteyn <boris.dekshteyn@gmail.com>
;;; Copyright © 2020 Ekaitz Zarraga <ekaitz@elenq.tech>
;;; Copyright © 2023 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2023, 2024 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; This file is part of GNU Guix.
;;;
@ -323,4 +323,8 @@ as the native format.")
(inputs (modify-inputs (package-inputs inkscape/stable)
(append imagemagick ;for libMagickCore and libMagickWand
python-cssselect))) ;to render qrcode
(native-inputs
(modify-inputs (package-native-inputs inkscape/stable)
;; Only use 1 imagemagick across the package build.
(replace "imagemagick" imagemagick)))
(properties (alist-delete 'hidden? (package-properties inkscape/stable)))))