mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 01:26:43 +01: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 @@ (define-public xmlto
|
|||
(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"))))
|
||||
(list
|
||||
#:configure-flags
|
||||
#~(list (string-append "GETOPT="
|
||||
#$(this-package-input "util-linux")
|
||||
"/bin/getopt"))))
|
||||
(native-inputs
|
||||
(list util-linux))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue