gnu: Add emacs-counsel-jq.

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

Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
This commit is contained in:
Joseph LaFreniere 2020-12-07 00:58:29 -06:00 committed by Oleg Pykhalov
parent c8ea8516d0
commit f15cc2f4a2
No known key found for this signature in database
GPG key ID: 167F8EA5001AFA9C

View file

@ -7783,6 +7783,33 @@ (define-public emacs-epl
@code{package.el} into a sane API.")
(license license:gpl3+)))
(define-public emacs-counsel-jq
(let ((release "1.0.0")
(revision "0")
(commit "aaf33fc2447096cd0d03b77395fe2a95c9fe1481"))
(package
(name "emacs-counsel-jq")
(version (git-version release revision commit))
(home-page "https://github.com/200ok-ch/counsel-jq")
(source
(origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "10rz0qm8a4bl0m86kx19zq8lri047p4sxqyny08bgm9pbam0wvwn"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-swiper" ,emacs-swiper)
("jq" ,jq)))
(synopsis "Live preview @code{jq} queries using counsel")
(description
"This Emacs package provides the ability to live preview @code{jq}
queries using counsel.")
(license license:gpl3+))))
(define-public emacs-counsel-notmuch
;; Upstream provides no release. Extract version for main file.
(let ((commit "a4a1562935e4180c42524c51609d1283e9be0688")