gnu: Add emacs-eros.

* gnu/packages/emacs.scm (emacs-eros): New public variable.
This commit is contained in:
Oleg Pykhalov 2018-05-02 19:14:51 +03:00
parent 1a73164da6
commit c498ff56d3
No known key found for this signature in database
GPG key ID: 7246E11C69B79569

View file

@ -10148,3 +10148,26 @@ (define-public emacs-sml-mode
comes with sml-proc which allows interaction with an inferior SML
interactive loop.")
(license license:gpl3+)))
(define-public emacs-eros
(let ((commit "a42e45c9b2397156c684330b0fc90ee0eba773f5")
(revision "1"))
(package
(name "emacs-eros")
(version (string-append "0.0.1" "-" revision "."
(string-take commit 7)))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/xiongtx/eros.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"0whlsq90v13fz69k3wjrwcwb9gkpfxqjd75mg3nrp85j9nwhb5i4"))))
(build-system emacs-build-system)
(home-page "https://github.com/xiongtx/eros")
(synopsis "Evaluation result overlays")
(description "@code{eros} provides evaluation result overlays.")
(license license:gpl3+))))