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.master
parent
2e4c2a3ae9
commit
60825fdd18
|
@ -228,7 +228,8 @@ project (but it is usable outside of the Gnome platform).")
|
||||||
(inputs `(("libgcrypt" ,libgcrypt)
|
(inputs `(("libgcrypt" ,libgcrypt)
|
||||||
("libxml2" ,libxml2)
|
("libxml2" ,libxml2)
|
||||||
("python" ,python-minimal-wrapper)
|
("python" ,python-minimal-wrapper)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)
|
||||||
|
("xz" ,xz)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue