me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-jq-mode.

* gnu/packages/emacs-xyz.scm (emacs-jq-mode): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Michael Rohleder 2020-08-24 02:18:38 +02:00 committed by Nicolas Goaziou
parent e1cab74a0b
commit cafde61d81
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 20 additions and 0 deletions

View File

@ -11708,6 +11708,26 @@ from within Emacs. Restclient runs queries from a plan-text query sheet,
displays results pretty-printed in XML or JSON with @code{restclient-mode}")
(license license:public-domain))))
(define-public emacs-jq-mode
(package
(name "emacs-jq-mode")
(version "0.5.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ljos/jq-mode")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0xk0if5i9cz4w06lx8v1vdm112pn1ybqgfw048sx15yyvfzgril1"))))
(build-system emacs-build-system)
(home-page "https://github.com/ljos/jq-mode")
(synopsis "Major mode for editing jq queries")
(description
"Jq mode is an Emacs major mode for editing jq-scripts.")
(license license:gpl3+)))
(define-public emacs-whitespace-cleanup-mode
(let ((commit "72427144b054b0238a86e1348c45d986b8830d9d")
(revision "1"))