gnu: Add emacs-peg.

* gnu/packages/emacs-xyz.scm (emacs-peg): New variable.
master
Brian Leung 2019-10-06 07:31:25 +02:00
parent b44271350b
commit 47467ce75a
No known key found for this signature in database
GPG Key ID: 3ADC75F013D678F9
1 changed files with 20 additions and 0 deletions

View File

@ -11715,6 +11715,26 @@ tables of contents.")
timestamps by providing a @code{ts} struct.")
(license license:gpl3+))))
(define-public emacs-peg
(package
(name "emacs-peg")
(version "0.6")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/emacsmirror/peg")
(commit version)))
(sha256
(base32
"0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n"))
(file-name (git-file-name name version))))
(build-system emacs-build-system)
(home-page "https://github.com/emacsmirror/peg/")
(synopsis "Parsing Expression Grammars in Elisp")
(description "This package provides a macro that parses the current buffer
according to a parsing expression grammar.")
(license license:gpl3+)))
(define-public emacs-org-ql
(package
(name "emacs-org-ql")