[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-counsel-jq.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-counsel-jq. |
Date: |
Mon, 07 Dec 2020 02:52:57 -0500 |
This is an automated email from the git hooks/post-receive script.
wigust pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new f15cc2f gnu: Add emacs-counsel-jq.
f15cc2f is described below
commit f15cc2f4a2a1cdd0e4c9f9b4bec80c7ae84634cc
Author: Joseph LaFreniere <joseph@lafreniere.xyz>
AuthorDate: Mon Dec 7 00:58:29 2020 -0600
gnu: Add emacs-counsel-jq.
* gnu/packages/emacs-xyz.scm (emacs-counsel-jq): New variable.
Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
---
gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 8a03b2d..de0b8e6 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -7783,6 +7783,33 @@ The purpose of this library is to wrap all the quirks
and hassle of
@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")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-counsel-jq.,
guix-commits <=