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