From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: [PATCH 02/25] gnu: Add r-rjson. Date: Wed, 21 Sep 2016 22:45:18 +0200 Message-ID: <20160921204541.3981-2-ricardo.wurmus@mdc-berlin.de> References: <20160921204541.3981-1-ricardo.wurmus@mdc-berlin.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46519) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmoP8-0006SV-03 for guix-devel@gnu.org; Wed, 21 Sep 2016 16:46:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bmoP6-0001dI-R7 for guix-devel@gnu.org; Wed, 21 Sep 2016 16:46:05 -0400 Received: from pegasus.bbbm.mdc-berlin.de ([141.80.25.20]:43123) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmoP6-0001d4-K5 for guix-devel@gnu.org; Wed, 21 Sep 2016 16:46:04 -0400 Received: from localhost (localhost [127.0.0.1]) by pegasus.bbbm.mdc-berlin.de (Postfix) with ESMTP id 14FCE380F8F for ; Wed, 21 Sep 2016 22:46:04 +0200 (CEST) Received: from pegasus.bbbm.mdc-berlin.de ([127.0.0.1]) by localhost (pegasus.bbbm.mdc-berlin.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sn8lch751ioa for ; Wed, 21 Sep 2016 22:45:58 +0200 (CEST) Received: from HTCAONE.mdc-berlin.net (puck.citx.mdc-berlin.de [141.80.36.101]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pegasus.bbbm.mdc-berlin.de (Postfix) with ESMTPS for ; Wed, 21 Sep 2016 22:45:58 +0200 (CEST) In-Reply-To: <20160921204541.3981-1-ricardo.wurmus@mdc-berlin.de> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/web.scm (r-rjson): New variable. --- gnu/packages/web.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 3713b24..e588014 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -3320,6 +3320,25 @@ callback or connection interfaces.") objects in HTML format.") (license l:lgpl2.1+))) +(define-public r-rjson + (package + (name "r-rjson") + (version "0.2.15") + (source + (origin + (method url-fetch) + (uri (cran-uri "rjson" version)) + (sha256 + (base32 + "1vzjyvf57k1fjizlk28rby65y5lsww5qnfvgnhln74qwda7hvl3p")))) + (build-system r-build-system) + (home-page "http://cran.r-project.org/web/packages/rjson") + (synopsis "JSON library for R") + (description + "This package provides functions to convert R objects into JSON objects +and vice-versa.") + (license l:gpl2+))) + (define-public gumbo-parser (package (name "gumbo-parser") -- 2.9.3