me
/
guix
Archived
1
0
Fork 0

gnu: cl-prompter: Update to 0.1.1-0.7890ed5.

* gnu/packages/lisp-xyz.scm (sbcl-prompter): Update to 0.1.1-0.7890ed5.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Change-Id: I65a7d23d4a889c1d7c4821e83b8ea3a56701a5c8
master
Andre A. Gomes 2024-01-08 14:09:32 +02:00 committed by Guillaume Le Vaillant
parent e541f9593f
commit d8ddf42712
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 36 additions and 34 deletions

View File

@ -23,7 +23,7 @@
;;; Copyright © 2020-2023 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; Copyright © 2020-2023 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2021, 2022 Aurora <rind38@disroot.org> ;;; Copyright © 2021, 2022 Aurora <rind38@disroot.org>
;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org> ;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org>
;;; Copyright © 2021, 2022, 2023 André A. Gomes <andremegafone@gmail.com> ;;; Copyright © 2021-2024 André A. Gomes <andremegafone@gmail.com>
;;; Copyright © 2021, 2022, 2023 Cage <cage-dev@twistfold.it> ;;; Copyright © 2021, 2022, 2023 Cage <cage-dev@twistfold.it>
;;; Copyright © 2021 Cameron Chaparro <cameron@cameronchaparro.com> ;;; Copyright © 2021 Cameron Chaparro <cameron@cameronchaparro.com>
;;; Copyright © 2021 Charles Jackson <charles.b.jackson@protonmail.com> ;;; Copyright © 2021 Charles Jackson <charles.b.jackson@protonmail.com>
@ -26292,43 +26292,45 @@ 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
(package (let ((commit "7890ed5d02e70aba01ceb964c6ee4f40776e7dc0")
(name "sbcl-prompter") (revision "0"))
(version "0.1.1") (package
(source (name "sbcl-prompter")
(origin (version (git-version "0.1.1" revision commit))
(method git-fetch) (source
(uri (git-reference (origin
(url "https://github.com/atlas-engineer/prompter") (method git-fetch)
(commit version))) (uri (git-reference
(file-name (git-file-name "cl-prompter" version)) (url "https://github.com/atlas-engineer/prompter")
(sha256 (commit commit)))
(base32 (file-name (git-file-name "cl-prompter" version))
"008bq36siza9qwmz6b1pvpm53lxmzryahnhy372l18gl3180in03")))) (sha256
(build-system asdf-build-system/sbcl) (base32
(inputs "0r15a6cagyp5x8aqx92ln2anni737h73bdshkvpzrac04ajss4md"))))
(list (build-system asdf-build-system/sbcl)
sbcl-alexandria (inputs
sbcl-calispel (list
sbcl-cl-containers sbcl-alexandria
sbcl-cl-str sbcl-calispel
sbcl-closer-mop sbcl-cl-containers
sbcl-lparallel sbcl-cl-str
sbcl-moptilities sbcl-closer-mop
sbcl-nclasses sbcl-lparallel
sbcl-serapeum sbcl-moptilities
sbcl-trivial-package-local-nicknames)) sbcl-nclasses
(native-inputs sbcl-serapeum
(list sbcl-lisp-unit2)) sbcl-trivial-package-local-nicknames))
(home-page "https://github.com/atlas-engineer/prompter") (native-inputs
(synopsis "Live-narrowing, fuzzy-matching, extensible prompt framework") (list sbcl-lisp-unit2))
(description (home-page "https://github.com/atlas-engineer/prompter")
"This prompter library is heavily inspired by Emacs' minibuffer and (synopsis "Live-narrowing, fuzzy-matching, extensible prompt framework")
(description
"This prompter library is heavily inspired by Emacs' minibuffer and
Helm (@url{https://emacs-helm.github.io/helm/}). It only deals with the 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))