diff options
author | Bruno Victal <mirai@makinata.eu> | 2023-10-09 21:06:11 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:09 +0200 |
commit | 3fab3a64393f16d0aba79e349abcb1a9abfb0352 (patch) | |
tree | 4dff714b6c6a027e753abe3f29db8b373c89af03 | |
parent | 7722ca5f414386ca4964cd8bcf09424b6dde82ee (diff) | |
download | guix-3fab3a64393f16d0aba79e349abcb1a9abfb0352.tar.gz guix-3fab3a64393f16d0aba79e349abcb1a9abfb0352.zip |
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>
-rw-r--r-- | gnu/packages/xml.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 0273a599ea..604d05e1ea 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1144,10 +1144,11 @@ code for classes that correspond to data structures defined by XMLSchema.") (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 |