summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2021-03-17 14:46:28 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2021-03-17 15:11:35 +0300
commit6101208741f0fbd64646966a161ff32ddb4a0cff (patch)
tree7ad63e66411421667f9a4d5d33e7714716a7ede7
parentguix: emacs-elfeed-score: Delete package merged to upstream. (diff)
downloadguix-wigust-6101208741f0fbd64646966a161ff32ddb4a0cff.tar.gz
gnu: Add emacs-kotlin-mode.
* guix/wigust/packages/emacs.scm (emacs-kotlin-mode): New variable.
-rw-r--r--guix/wigust/packages/emacs.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/guix/wigust/packages/emacs.scm b/guix/wigust/packages/emacs.scm
index 1804ac8..1d1abdf 100644
--- a/guix/wigust/packages/emacs.scm
+++ b/guix/wigust/packages/emacs.scm
@@ -1717,3 +1717,24 @@ and InfluxDB.")
"Dumb indentation mode is appropriate for editing buffers that Emacs
does not fully understand syntactically")
(license license:gpl3+)))
+
+(define-public emacs-kotlin-mode
+ (let ((commit "0e4bafb31d1fc2a0a420a521c2723d5526646c0b")
+ (revision "1"))
+ (package
+ (name "emacs-kotlin-mode")
+ (version (git-version "0.0.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Emacs-Kotlin-Mode-Maintainers/kotlin-mode")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "09inpgwmnnqaakyn4r4xs8kax8b89dw94kvl521x6d43h9zl5i70"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/Emacs-Kotlin-Mode-Maintainers/kotlin-mode")
+ (synopsis "Major mode for kotlin")
+ (description "This package provides an Emacs major mode for Kotlin.")
+ (license license:gpl3+))))