mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: xmlto: Rewrite with G-Expressions.
* gnu/packages/xml.scm (xmlto)[arguments]: Rewrite with G-Expressions. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
7722ca5f41
commit
3fab3a6439
1 changed files with 5 additions and 4 deletions
|
@ -1144,10 +1144,11 @@ code for classes that correspond to data structures defined by XMLSchema.")
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; Make sure the reference to util-linux's 'getopt' is kept in 'xmlto'.
|
;; Make sure the reference to util-linux's 'getopt' is kept in 'xmlto'.
|
||||||
'(#:configure-flags (list (string-append "GETOPT="
|
(list
|
||||||
(assoc-ref %build-inputs
|
#:configure-flags
|
||||||
"util-linux")
|
#~(list (string-append "GETOPT="
|
||||||
"/bin/getopt"))))
|
#$(this-package-input "util-linux")
|
||||||
|
"/bin/getopt"))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list util-linux))
|
(list util-linux))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue