mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
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:
parent
085948fbfc
commit
b3d04190f4
1 changed files with 24 additions and 0 deletions
|
@ -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")
|
||||||
|
|
Loading…
Reference in a new issue