me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-tomelr.

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

Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
master
kiasoc5 2022-06-04 14:20:35 -04:00 committed by Tobias Geerinckx-Rice
parent aa979449bc
commit ddf1f0b1a2
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 22 additions and 0 deletions

View File

@ -31184,6 +31184,28 @@ extended by the user via @code{setup-define}. A list of currently known
local macros are documented in the docstring for @code{setup}.")
(license license:gpl3+)))
(define-public emacs-tomelr
(package
(name "emacs-tomelr")
(version "0.4.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/kaushalmodi/tomelr/")
(commit (string-append "v" version))))
(sha256
(base32 "03iih7arjlfg8gdp4v2xglas9z519q1s11l28igr8l0m5y0pdrnk"))
(file-name (git-file-name name version))))
(build-system emacs-build-system)
(propagated-inputs (list emacs-map emacs-seq))
(home-page "https://github.com/kaushalmodi/tomelr/")
(synopsis "Emacs-Lisp library for converting S-expressions to TOML")
(description
"This package provides the @code{tomelr-encode} function to convert a Lisp
data expression in Alist or Plist format to a TOML string.")
(license license:gpl3+)))
(define-public emacs-ed-mode
;; XXX: Upstream did not tag any commits yet.
(let ((commit "69f4fb34eca8df6a3bfe24bd8d8075551f0264ac")