mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
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:
parent
2e4c2a3ae9
commit
60825fdd18
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue