gnu: Add r-svgui.

* gnu/packages/cran.scm (r-svgui): New variable.

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
master
Mădălin Ionel Patrașcu 2018-09-08 22:54:58 +02:00 committed by Ricardo Wurmus
parent f6b7ccc9f9
commit 01af264dcb
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 23 additions and 0 deletions

View File

@ -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)
@ -5645,3 +5647,24 @@ professional lives, but which are usually taught in isolation, if at all.")
"The @code{r-abd} package contains data sets and sample code for the Analysis of
biological data by Michael Whitlock and Dolph Schluter.")
(license license:gpl2)))
(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. It
centralizes info about GUI elements currently used, and it dispatches GUI
calls to the particular toolkits in use in function of the context.")
(license license:gpl2)))