This is an automated email from the git hooks/post-receive script. ieure pushed a commit to branch master in repository guix.
The following commit(s) were added to refs/heads/master by this push: new d219e38a41 gnu: Add emacs-rescript-mode. d219e38a41 is described below commit d219e38a41b37663f1b4729aca0014be8a23cfe8 Author: Vasilii Smirnov <vasilii.smir...@mailbox.org> AuthorDate: Sat Mar 29 19:03:50 2025 +0100 gnu: Add emacs-rescript-mode. * gnu/packages/emacs-xyz.scm (emacs-rescript-mode): New variable. Change-Id: I52fa3e2693f62aa25ec2d97441bc3f191d46ac0b Signed-off-by: Ian Eure <i...@retrospec.tv> --- gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 07c1ad9b75..a633bf76b1 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -3773,6 +3773,33 @@ reformat the current buffer using a command-line program, together with an optional minor mode which can apply this command automatically on save.") (license license:gpl3+))) +(define-public emacs-rescript-mode + (let ((commit "b9dda43cc52cd4a9b384c59fb0cc7a11f0bad230") + (revision "0")) + (package + (name "emacs-rescript-mode") + (version (git-version "0.1.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jjlee/rescript-mode") + (commit commit))) + (sha256 + (base32 + "00pjn683zl5rcmwf86gs4ikxzz82d3rpmicpxhgy2m2xyrfxpz89")) + (file-name (git-file-name name version)))) + (build-system emacs-build-system) + (arguments + (list + #:tests? #t + #:test-command #~(list "ert-runner"))) + (native-inputs + (list emacs-ert-runner)) + (home-page "https://github.com/jjlee/rescript-mode") + (synopsis "Major mode for editing ReScript") + (description "This package provides a major mode for editing ReScript source code.") + (license license:gpl3)))) + (define-public emacs-language-id (package (name "emacs-language-id")