gnu: emacs-orderless: Update to 1.0.
* gnu/packages/emacs-xyz.scm (emacs-orderless): Update to 1.0, previously used commit was pointing to 0.8. Signed-off-by: Hilton Chain <hako@ultrarare.space>
This commit is contained in:
parent
262efbf9b1
commit
e9bea73e2d
1 changed files with 28 additions and 29 deletions
|
@ -11290,39 +11290,38 @@ interface.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public emacs-orderless
|
(define-public emacs-orderless
|
||||||
(let ((commit "004cee6b8e01f8eb0cb1c683d0a637b14890600f"))
|
(package
|
||||||
(package
|
(name "emacs-orderless")
|
||||||
(name "emacs-orderless")
|
(version "1.0")
|
||||||
(version "1.0")
|
(source
|
||||||
(source
|
(origin
|
||||||
(origin
|
(method git-fetch)
|
||||||
(method git-fetch)
|
(uri (git-reference
|
||||||
(uri (git-reference
|
(url "https://github.com/oantolin/orderless")
|
||||||
(url "https://github.com/oantolin/orderless")
|
(commit version)))
|
||||||
(commit commit)))
|
(sha256
|
||||||
(sha256
|
(base32 "1jmwyici90v82gqjq44n0scrwhmg05pi9yplkn4bpss80c83dxp4"))
|
||||||
(base32 "115bwqi2yc44bgvcl7lha8p2s6jgh5hksn4wa9s0kpfxhi14jwmy"))
|
(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
|
(list
|
||||||
(list
|
#:phases
|
||||||
#:phases
|
#~(modify-phases %standard-phases
|
||||||
#~(modify-phases %standard-phases
|
(add-after 'install 'makeinfo
|
||||||
(add-after 'install 'makeinfo
|
(lambda _
|
||||||
(lambda _
|
(invoke "makeinfo" "orderless.texi")
|
||||||
(invoke "makeinfo" "orderless.texi")
|
(install-file "orderless.info"
|
||||||
(install-file "orderless.info"
|
(string-append #$output "/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")
|
(synopsis "Emacs completion style that matches multiple regexps in any order")
|
||||||
(synopsis "Emacs completion style that matches multiple regexps in any order")
|
(description "This package provides an orderless completion style that
|
||||||
(description "This package provides an orderless completion style that
|
|
||||||
divides the pattern into space-separated components, and matches candidates
|
divides the pattern into space-separated components, and matches candidates
|
||||||
that match all of the components in any order. Each component can match in
|
that match all of the components in any order. Each component can match in
|
||||||
any one of several ways: literally, as a regexp, as an initialism, in the flex
|
any one of several ways: literally, as a regexp, as an initialism, in the flex
|
||||||
style, or as multiple word prefixes.")
|
style, or as multiple word prefixes.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-consult
|
(define-public emacs-consult
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue