gnu: emacs-orderless: Improve package style.

* gnu/packages/emacs-xyz.scm (emacs-orderless)[arguments]: Use G-expressions.
This commit is contained in:
Nicolas Goaziou 2022-11-29 22:59:22 +01:00
parent 0a1bf319de
commit 0d4f6ef0de
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D

View File

@ -9974,14 +9974,14 @@ interface.")
(file-name (git-file-name name version)))) (file-name (git-file-name name version))))
(build-system emacs-build-system) (build-system emacs-build-system)
(arguments (arguments
`(#:phases (list
(modify-phases %standard-phases #:phases
(add-after 'install 'makeinfo #~(modify-phases %standard-phases
(lambda* (#:key outputs #:allow-other-keys) (add-after 'install 'makeinfo
(invoke "makeinfo" "orderless.texi") (lambda _
(install-file "orderless.info" (invoke "makeinfo" "orderless.texi")
(string-append (assoc-ref outputs "out") (install-file "orderless.info"
"/share/info"))))))) (string-append #$output "/share/info")))))))
(native-inputs (native-inputs
(list texinfo)) (list texinfo))
(home-page "https://github.com/oantolin/orderless") (home-page "https://github.com/oantolin/orderless")