From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42358) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fxVQo-0001iS-C5 for guix-patches@gnu.org; Wed, 05 Sep 2018 06:53:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fxVQl-0005G5-2g for guix-patches@gnu.org; Wed, 05 Sep 2018 06:53:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:41423) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fxVQk-0005FK-O6 for guix-patches@gnu.org; Wed, 05 Sep 2018 06:53:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fxVQk-0006cP-G1 for guix-patches@gnu.org; Wed, 05 Sep 2018 06:53:02 -0400 Subject: [bug#32585] [PATCH] gnu: Add r-svgui. References: <20180830101632.9950-1-madalinionel.patrascu@mdc-berlin.de> In-Reply-To: <20180830101632.9950-1-madalinionel.patrascu@mdc-berlin.de> Resent-Message-ID: From: pimi Date: Wed, 5 Sep 2018 12:52:25 +0200 Message-ID: <20180905105225.29837-1-madalinionel.patrascu@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain 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: 32585@debbugs.gnu.org Cc: pimi gnu/packages/cran.scm (r-svgui): New variable. --- gnu/packages/cran.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 016d1b1e4..105e81fb4 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -33,6 +33,8 @@ #:use-module (guix build-system r) #:use-module (gnu packages compression) #:use-module (gnu packages gcc) + #:use-module (gnu packages gnome) + #:use-module (gnu packages gtk) #:use-module (gnu packages machine-learning) #:use-module (gnu packages maths) #:use-module (gnu packages mpi) @@ -4988,3 +4990,25 @@ maximum cycle number. The @code{r-abcoptim} implements the Artificial bee colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}. This version is a work-in-progress and is written in R code.") (license license:expat))) + +(define-public r-svgui + (package + (name "r-svgui") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "svGUI" version)) + (sha256 + (base32 "1r7ab0p4yr8q03gj02hmj7k1ghksgkg4nx750c0ajfs2q9y1dxfc")))) + (properties `((upstream-name . "svGUI"))) + (build-system r-build-system) + (home-page "https://github.com/SciViews/svGUI/") + (synopsis "Functions for managing GUI clients in R") + (description + "The SciViews @code{svGUI} package eases the management of Graphical User +Interfaces (GUI) in R. It is independent from any particular GUI widgets (Tk, +Gtk2, native, ...). It centralizes info about GUI elements currently used, and +it dispatches GUI calls to the particular toolkits in use in function of the +context (is R run at the terminal, within a Tk application, a HTML page?).") + (license license:gpl2))) -- 2.17.1