mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: xmlto: Keep references to libxml2, libxslt, and util-linux programs.
* gnu/packages/xml.scm (xmlto): Add 'arguments' field. [inputs]: Add libxml2 and libxslt.
This commit is contained in:
parent
74067e1aeb
commit
ae0c12023d
1 changed files with 9 additions and 1 deletions
|
@ -177,8 +177,16 @@ (define-public xmlto
|
|||
(base32
|
||||
"0dp5nxq491gymq806za0dk4hngfmq65ysrqbn0ypajqbbl6vf71n"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
;; Make sure the reference to util-linux's 'getopt' is kept in 'xmlto'.
|
||||
'(#:configure-flags (list (string-append "GETOPT="
|
||||
(assoc-ref %build-inputs
|
||||
"util-linux")
|
||||
"/bin/getopt"))))
|
||||
(inputs
|
||||
`(("util-linux" ,util-linux)))
|
||||
`(("util-linux" ,util-linux) ; for 'getopt'
|
||||
("libxml2" ,libxml2) ; for 'xmllint'
|
||||
("libxslt" ,libxslt))) ; for 'xsltproc'
|
||||
(home-page "http://cyberelk.net/tim/software/xmlto/")
|
||||
(synopsis "Front-end to an XSL toolchain")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue