diff options
author | jgart <jgart@dismail.de> | 2022-10-21 00:33:56 -0500 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-10-21 09:55:01 +0200 |
commit | 9365d0e16b76b8ab703be1cdd8c244b41b4d2dd4 (patch) | |
tree | ad66b0fe359c6c79e7530ea3a5fef4e7828099d8 /gnu | |
parent | 928cae3443f61b2c16045f6b6e422566a27caa92 (diff) |
gnu: Add emacs-purs-mode.
* gnu/packages/emacs-xyz.scm (emacs-purs-mode): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 3c5443a4f6..7c126eadee 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -33410,6 +33410,31 @@ workspace diagnostics, symbols, and file symbols from @{emacs-lsp-mode} by leveraging @code{emacs-consult} APIs.") (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 (let ((commit "31602ccab53aa7dcf26a1af222c7da2bcc1390ed") (revision "0")) |