mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add emacs-purs-mode.
* gnu/packages/emacs-xyz.scm (emacs-purs-mode): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
928cae3443
commit
9365d0e16b
1 changed files with 25 additions and 0 deletions
|
@ -33410,6 +33410,31 @@ (define-public emacs-consult-lsp
|
||||||
by leveraging @code{emacs-consult} APIs.")
|
by leveraging @code{emacs-consult} APIs.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public emacs-purs-mode
|
||||||
|
;; XXX: Upstream set no tag nor any Version keyword. Using 0 as the base
|
||||||
|
;; version.
|
||||||
|
(let ((commit "d29f1021787a90d0fd3eb0af625958abb7f7506b")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "emacs-purs-mode")
|
||||||
|
(version (git-version "0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri
|
||||||
|
(git-reference
|
||||||
|
(url "https://github.com/PureFunctor/purs-mode")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0r7219ysf3hsjnan30hidf8jamcqsz36pkcmnhknff0c6dpwbnpx"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/PureFunctor/purs-mode/")
|
||||||
|
(synopsis "PureScript major mode for Emacs")
|
||||||
|
(description
|
||||||
|
"Purs mode provides a PureScript major mode for Emacs.")
|
||||||
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-pdb-capf
|
(define-public emacs-pdb-capf
|
||||||
(let ((commit "31602ccab53aa7dcf26a1af222c7da2bcc1390ed")
|
(let ((commit "31602ccab53aa7dcf26a1af222c7da2bcc1390ed")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
Loading…
Reference in a new issue