From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Woodcroft Subject: [PATCH 1/3] gnu: Add r-gdtools. Date: Tue, 5 Jul 2016 21:06:33 +0800 Message-ID: <20160705130635.668-2-donttrustben@gmail.com> References: <20160705130635.668-1-donttrustben@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46241) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bKQ5f-0000as-VA for guix-devel@gnu.org; Tue, 05 Jul 2016 09:08:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bKQ5d-0001K5-O6 for guix-devel@gnu.org; Tue, 05 Jul 2016 09:08:38 -0400 Received: from mail-pf0-x242.google.com ([2607:f8b0:400e:c00::242]:32845) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bKQ5d-0001Jy-Gt for guix-devel@gnu.org; Tue, 05 Jul 2016 09:08:37 -0400 Received: by mail-pf0-x242.google.com with SMTP id c74so19107231pfb.0 for ; Tue, 05 Jul 2016 06:08:37 -0700 (PDT) Received: from u.gateway (CPE-120-145-15-70.lnse2.wel.bigpond.net.au. [120.145.15.70]) by smtp.googlemail.com with ESMTPSA id qc16sm5542769pab.1.2016.07.05.06.08.33 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 05 Jul 2016 06:08:35 -0700 (PDT) In-Reply-To: <20160705130635.668-1-donttrustben@gmail.com> 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/statistics.scm (r-gdtools): New variable. --- gnu/packages/statistics.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 73c30ae..24fbabe 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -610,6 +610,30 @@ multidimensional conditioning system and a consistent interface to map data to aesthetic attributes.") (license license:gpl2+))) +(define-public r-gdtools + (package + (name "r-gdtools") + (version "0.0.7") + (source + (origin + (method url-fetch) + (uri (cran-uri "gdtools" version)) + (sha256 + (base32 + "1bmnf9d677f2jy8jnb9ymjz1qzm4yrd0qp6k5qrrly06jfffyx7g")))) + (build-system r-build-system) + (native-inputs + `(("r-rcpp" ,r-rcpp) + ("pkg-config" ,pkg-config))) + (inputs + `(("cairo" ,cairo))) + (home-page "http://cran.r-project.org/web/packages/gdtools") + (synopsis "Utilities for graphical rendering") + (description + "The @code{gdtools} package provides functionalities to get font metrics +and to generate base64 encoded string from raster matrix.") + (license license:gpl3))) + (define-public r-assertthat (package (name "r-assertthat") -- 2.9.0