gnu: Add emacs-toml-mode.

* gnu/packages/emacs-xyz.scm (emacs-toml-mode): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Joseph LaFreniere 2020-04-26 11:24:32 -05:00 committed by Nicolas Goaziou
parent 085948fbfc
commit b3d04190f4
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -2584,6 +2584,30 @@ (define-public emacs-sx
Stack Overflow, Super User, and other StackExchange sites.") Stack Overflow, Super User, and other StackExchange sites.")
(license license:gpl3+)))) (license license:gpl3+))))
(define-public emacs-toml-mode
(let ((version "0.1.3")
(revision "0")
(commit "f6c61817b00f9c4a3cab1bae9c309e0fc45cdd06"))
(package
(name "emacs-toml-mode")
(version (git-version version revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/dryman/toml-mode.el.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "05b4ksay85c8y5ncax0qsvnmplwsfiw24z16a58gkarjz938hb57"))))
(build-system emacs-build-system)
(home-page "https://github.com/dryman/toml-mode.el")
(synopsis "Emacs major mode for editing TOML files")
(description
"This package provides a major mode for editing files in @acronym{TOML,
Tom's Obvious, Minimal Language} data format.")
(license license:gpl3+))))
(define-public emacs-f (define-public emacs-f
(package (package
(name "emacs-f") (name "emacs-f")