me
/
guix
Archived
1
0
Fork 0

gnu: inkscape: Fix qrcode rendering.

Fixes <https://issues.guix.gnu.org/57479>.

* gnu/packages/inkscape.scm (inkscape)[inputs]: Add python-cssselect.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Michael Rohleder 2023-01-20 23:33:42 +01:00 committed by Ludovic Courtès
parent f84fdb3d89
commit 25b01ed77f
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 3 additions and 1 deletions

View File

@ -46,6 +46,7 @@
#:use-module (gnu packages pdf)
#:use-module (gnu packages popt)
#:use-module (gnu packages python)
#:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages xml)
#:use-module (gnu packages ghostscript)
@ -273,5 +274,6 @@ as the native format.")
(inputs (modify-inputs (package-inputs inkscape/stable)
(replace "lib2geom" lib2geom-1.2)
(append bash-minimal
librsvg))) ;for the pixbuf loader
librsvg ;for the pixbuf loader
python-cssselect))) ;to render qrcode
(properties (alist-delete 'hidden? (package-properties inkscape/stable)))))