me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-spark.

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

Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
master
Maxim Cournoyer 2018-03-30 21:18:16 -04:00 committed by Arun Isaac
parent 00bdf501df
commit bae8e59e9d
No known key found for this signature in database
GPG Key ID: 2E25EE8B61802BB3
1 changed files with 25 additions and 0 deletions

View File

@ -1908,6 +1908,31 @@ Expectations, but it can be used in other contexts.")
definitions for testing with the Ecukes framework.") definitions for testing with the Ecukes framework.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-spark
(let ((version "20160503") ; no proper tag, use date of commit
(commit "0bf148c3ede3b31d56fd75f347cdd0b0eae60025")
(revision "1"))
(package
(name "emacs-spark")
(version (git-version version revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/alvinfrancis/spark.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1ykqr86j17mi95s08d9fp02d7ych1331b04dcqxzxnmpkhwngyj1"))))
(build-system emacs-build-system)
(home-page "https://github.com/alvinfrancis/spark")
(synopsis "Sparkline generation library for Emacs Lisp")
(description "@code{emacs-spark} is a sparkline generation library for
Emacs Lisp. It generates a sparkline string given a list of numbers. It is a
port of @code{cl-spark} to Emacs Lisp.")
(license license:expat))))
(define-public emacs-es-mode (define-public emacs-es-mode
(package (package
(name "emacs-es-mode") (name "emacs-es-mode")