From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33301) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e3Jhm-0002Oz-LQ for guix-patches@gnu.org; Sat, 14 Oct 2017 06:30:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e3Jhj-0007B9-H0 for guix-patches@gnu.org; Sat, 14 Oct 2017 06:30:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:58426) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e3Jhj-0007B4-Dw for guix-patches@gnu.org; Sat, 14 Oct 2017 06:30:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e3Jhj-0007bI-7P for guix-patches@gnu.org; Sat, 14 Oct 2017 06:30:03 -0400 Subject: [bug#28832] [PATCH 2/3] gnu: Add emacs-json-snatcher. Resent-Message-ID: From: Oleg Pykhalov Date: Sat, 14 Oct 2017 13:29:14 +0300 Message-Id: <20171014102915.11778-2-go.wigust@gmail.com> In-Reply-To: <20171014102915.11778-1-go.wigust@gmail.com> References: <20171014102915.11778-1-go.wigust@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28832@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-json-snatcher): New variable. --- gnu/packages/emacs.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 8d94341ab..9bf7acf0b 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -5618,6 +5618,26 @@ running a customisable handler command (@code{ignore} by default). ") @url{http://json.org/, JSON}.") (license license:gpl3+))) +(define-public emacs-json-snatcher + (package + (name "emacs-json-snatcher") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/Sterlingg/json-snatcher/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1nfiwsifpdiz0lbrqa77nl0crnfrv5h85ans9b0g5rggnmyshcfb")))) + (build-system emacs-build-system) + (home-page "https://github.com/sterlingg/json-snatcher") + (synopsis "Grabs the path to JSON values in a JSON file") + (description "@code{emacs-json-snatcher} grabs the path to JSON values in +a @url{http://json.org/, JSON} file.") + (license license:gpl3+))) + (define-public emacs-restclient (let ((commit "07a3888bb36d0e29608142ebe743b4362b800f40") (revision "1")) ;Guix package revision, -- 2.14.2