[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-scala-mode.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-scala-mode. |
Date: |
Wed, 08 Jul 2020 06:34:26 -0400 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 30b14aa gnu: Add emacs-scala-mode.
30b14aa is described below
commit 30b14aa00205905fca75afba1afa1a5127e3190d
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Wed Jul 8 00:29:52 2020 -0300
gnu: Add emacs-scala-mode.
* gnu/packages/emacs-xyz.scm (emacs-scala-mode): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index f7c84f2..9167ad1 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -4950,6 +4950,30 @@ on context.")
characters and asynchronous fetching of completion candidates.")
(license license:gpl3+)))
+(define-public emacs-scala-mode
+ (package
+ (name "emacs-scala-mode")
+ (version "1.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hvesalai/emacs-scala-mode")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1072lsin7dxadc0xyhy42wd0cw549axbbd4dy95wfmfcc1xbzjwv"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/hvesalai/emacs-scala-mode")
+ (synopsis "Emacs major mode for Scala")
+ (description
+ "This package provides basic Emacs support for the Scala language,
+including: local indenting of code, comments and multi-line strings, motion
+commands and highlighting.")
+ ;; There are no copyright headers in the source code. The LICENSE file
+ ;; indicates GPL3.
+ (license license:gpl3)))
+
(define-public emacs-scheme-complete
(let ((commit "9b5cf224bf2a5994bc6d5b152ff487517f1a9bb5"))
(package
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-scala-mode.,
guix-commits <=