gnu: cl-prompter: Update to 0.1.1.
* gnu/packages/lisp-xyz.scm (sbcl-prompter): Update to 0.1.1. [source]: Remove snippet. [native-inputs]: Remove sbcl-nasdf. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net> Change-Id: Ie339db2ff722b72f93c15c74e76aeaaf17f3ce7dmaster
parent
154a4184db
commit
8b3195deaa
|
@ -26128,26 +26128,19 @@ extra features like type inference.")
|
||||||
(sbcl-package->cl-source-package sbcl-nclasses))
|
(sbcl-package->cl-source-package sbcl-nclasses))
|
||||||
|
|
||||||
(define-public sbcl-prompter
|
(define-public sbcl-prompter
|
||||||
(let ((commit "b40a13af6ba4bd5c73c17e94dd2cbc2901bbd02f")
|
|
||||||
(revision "0"))
|
|
||||||
(package
|
(package
|
||||||
(name "sbcl-prompter")
|
(name "sbcl-prompter")
|
||||||
(version (git-version "0.1.0" revision commit))
|
(version "0.1.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/atlas-engineer/prompter")
|
(url "https://github.com/atlas-engineer/prompter")
|
||||||
(commit commit)))
|
(commit version)))
|
||||||
(file-name (git-file-name "cl-prompter" version))
|
(file-name (git-file-name "cl-prompter" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1gg69rq2v9wcr7kj9fvd2i38r28fsgqqw6zs71m46krmr1gmfh4q"))
|
"008bq36siza9qwmz6b1pvpm53lxmzryahnhy372l18gl3180in03"))))
|
||||||
(modules '((guix build utils)))
|
|
||||||
(snippet
|
|
||||||
`(begin
|
|
||||||
(delete-file-recursively "nasdf")
|
|
||||||
#t))))
|
|
||||||
(build-system asdf-build-system/sbcl)
|
(build-system asdf-build-system/sbcl)
|
||||||
(inputs
|
(inputs
|
||||||
(list
|
(list
|
||||||
|
@ -26162,8 +26155,7 @@ extra features like type inference.")
|
||||||
sbcl-serapeum
|
sbcl-serapeum
|
||||||
sbcl-trivial-package-local-nicknames))
|
sbcl-trivial-package-local-nicknames))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list sbcl-lisp-unit2
|
(list sbcl-lisp-unit2))
|
||||||
sbcl-nasdf))
|
|
||||||
(home-page "https://github.com/atlas-engineer/prompter")
|
(home-page "https://github.com/atlas-engineer/prompter")
|
||||||
(synopsis "Live-narrowing, fuzzy-matching, extensible prompt framework")
|
(synopsis "Live-narrowing, fuzzy-matching, extensible prompt framework")
|
||||||
(description
|
(description
|
||||||
|
@ -26172,7 +26164,7 @@ Helm (@url{https://emacs-helm.github.io/helm/}). It only deals with the
|
||||||
backend side of things, it does not handle any display. Features include
|
backend side of things, it does not handle any display. Features include
|
||||||
asynchronous suggestion computation, multiple sources, actions and resumable
|
asynchronous suggestion computation, multiple sources, actions and resumable
|
||||||
prompters.")
|
prompters.")
|
||||||
(license license:bsd-3))))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public cl-prompter
|
(define-public cl-prompter
|
||||||
(sbcl-package->cl-source-package sbcl-prompter))
|
(sbcl-package->cl-source-package sbcl-prompter))
|
||||||
|
|
Reference in New Issue