mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-20 17:53:26 -05:00
gnu: emacs-orderless: Update to 0.6.
* gnu/packages/emacs-xyz.scm (emacs-orderless): Update to 0.6. [native-inputs]: Add texinfo. [arguments]<#:phases>: Install manual.
This commit is contained in:
parent
860ca285b6
commit
3c5849f3ec
1 changed files with 13 additions and 2 deletions
|
@ -7570,7 +7570,7 @@ (define-public emacs-selectrum
|
|||
(define-public emacs-orderless
|
||||
(package
|
||||
(name "emacs-orderless")
|
||||
(version "0.5")
|
||||
(version "0.6")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -7578,9 +7578,20 @@ (define-public emacs-orderless
|
|||
(url "https://github.com/oantolin/orderless")
|
||||
(commit version)))
|
||||
(sha256
|
||||
(base32 "032lfwflkpaxbcxl4jf438vapswsdagipjczcn30sc4dfdh3p42c"))
|
||||
(base32 "1javw5n3h3iv7f433b2ack49aka1jdpp8yxnaahzg5qbvr80hnay"))
|
||||
(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")))))))
|
||||
(native-inputs
|
||||
`(("texinfo" ,texinfo)))
|
||||
(home-page "https://github.com/oantolin/orderless")
|
||||
(synopsis "Emacs completion style that matches multiple regexps in any order")
|
||||
(description "This package provides an orderless completion style that
|
||||
|
|
Loading…
Reference in a new issue