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: Ie339db2ff722b72f93c15c74e76aeaaf17f3ce7d
This commit is contained in:
Andre A. Gomes 2023-11-29 11:21:10 +02:00 committed by Guillaume Le Vaillant
parent 154a4184db
commit 8b3195deaa
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -26128,51 +26128,43 @@ (define-public cl-nclasses
(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") (package
(revision "0")) (name "sbcl-prompter")
(package (version "0.1.1")
(name "sbcl-prompter") (source
(version (git-version "0.1.0" revision commit)) (origin
(source (method git-fetch)
(origin (uri (git-reference
(method git-fetch) (url "https://github.com/atlas-engineer/prompter")
(uri (git-reference (commit version)))
(url "https://github.com/atlas-engineer/prompter") (file-name (git-file-name "cl-prompter" version))
(commit commit))) (sha256
(file-name (git-file-name "cl-prompter" version)) (base32
(sha256 "008bq36siza9qwmz6b1pvpm53lxmzryahnhy372l18gl3180in03"))))
(base32 (build-system asdf-build-system/sbcl)
"1gg69rq2v9wcr7kj9fvd2i38r28fsgqqw6zs71m46krmr1gmfh4q")) (inputs
(modules '((guix build utils))) (list
(snippet sbcl-alexandria
`(begin sbcl-calispel
(delete-file-recursively "nasdf") sbcl-cl-containers
#t)))) sbcl-cl-str
(build-system asdf-build-system/sbcl) sbcl-closer-mop
(inputs sbcl-lparallel
(list sbcl-moptilities
sbcl-alexandria sbcl-nclasses
sbcl-calispel sbcl-serapeum
sbcl-cl-containers sbcl-trivial-package-local-nicknames))
sbcl-cl-str (native-inputs
sbcl-closer-mop (list sbcl-lisp-unit2))
sbcl-lparallel (home-page "https://github.com/atlas-engineer/prompter")
sbcl-moptilities (synopsis "Live-narrowing, fuzzy-matching, extensible prompt framework")
sbcl-nclasses (description
sbcl-serapeum "This prompter library is heavily inspired by Emacs' minibuffer and
sbcl-trivial-package-local-nicknames))
(native-inputs
(list sbcl-lisp-unit2
sbcl-nasdf))
(home-page "https://github.com/atlas-engineer/prompter")
(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))