me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-edn.

* gnu/packages/emacs-xyz.scm (emacs-edn): New variable.
master
Pierre Neidhardt 2020-01-06 17:49:45 +01:00
parent 83460433b9
commit 41a3ace54e
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 24 additions and 0 deletions

View File

@ -20863,3 +20863,27 @@ It also provides original Helm commands: @command{helm-cider-spec},
@command{helm-cider-spec-ns}, @command{helm-cider-repl-history},
@command{helm-cider-cheatsheet}.")
(license license:gpl3+))))
(define-public emacs-edn
;; No release since February 2016
(let ((commit "be9e32d1b49e35247b263b0243df7cfdc8d413ab"))
(package
(name "emacs-edn")
(version (git-version "1.1.2" "1" commit))
(home-page "https://github.com/expez/edn.el")
(source (origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1xp2hjhn52k6l1g6ypva6dsklpawni7gvjafbz6404f9dyxflh7l"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-peg" ,emacs-peg)))
(synopsis "Read and write EDN from Elisp")
(description "This is an Emacs Lisp library for reading and writing the
data format @code{edn}. See @url{https://github.com/edn-format/edn}.")
(license license:gpl3+))))