gnu: Add emacs-validate.
* gnu/packages/emacs.scm (emacs-validate): New public variable.
This commit is contained in:
parent
fb3aeaf7de
commit
dc58633761
|
@ -8337,3 +8337,22 @@ arXiv, Google Scholar, Library of Congress, etc.
|
|||
using @kbd{M-up} or @kbd{M-down} if a region is marked, it will move the
|
||||
region instead.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-validate
|
||||
(package
|
||||
(name "emacs-validate")
|
||||
(version "1.0.5")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/Malabarba/validate.el"
|
||||
"/archive/" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"125mbd111f1h1baw0z3fzm48y1bvaigljyzvvnqgrn0shxbj0khg"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/Malabarba/validate.el")
|
||||
(synopsis "Emacs library for scheme validation")
|
||||
(description "This Emacs library provides two functions that perform
|
||||
schema validation.")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in New Issue