From 6101208741f0fbd64646966a161ff32ddb4a0cff Mon Sep 17 00:00:00 2001 From: Oleg Pykhalov Date: Wed, 17 Mar 2021 14:46:28 +0300 Subject: gnu: Add emacs-kotlin-mode. * guix/wigust/packages/emacs.scm (emacs-kotlin-mode): New variable. --- guix/wigust/packages/emacs.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) 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+)))) -- cgit v1.2.3