gnu: libxslt: Fix cross-compilation.

This package native build was relying on xz as an implicit input. In fact
libxslt is linking against liblzma, and xz is thus an input.

* gnu/packages/xml.scm (libxslt)[inputs]: Add xz.
This commit is contained in:
Mathieu Othacehe 2019-12-16 13:39:05 +01:00
parent 2e4c2a3ae9
commit 60825fdd18
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -228,7 +228,8 @@ (define-public libxslt
(inputs `(("libgcrypt" ,libgcrypt)
("libxml2" ,libxml2)
("python" ,python-minimal-wrapper)
("zlib" ,zlib)))
("zlib" ,zlib)
("xz" ,xz)))
(native-inputs
`(("pkg-config" ,pkg-config)))
(description