gnu: Add r-svgui.
* gnu/packages/cran.scm (r-svgui): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
f6b7ccc9f9
commit
01af264dcb
|
@ -33,6 +33,8 @@
|
||||||
#:use-module (guix build-system r)
|
#:use-module (guix build-system r)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages gcc)
|
#: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 machine-learning)
|
||||||
#:use-module (gnu packages maths)
|
#:use-module (gnu packages maths)
|
||||||
#:use-module (gnu packages mpi)
|
#: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
|
"The @code{r-abd} package contains data sets and sample code for the Analysis of
|
||||||
biological data by Michael Whitlock and Dolph Schluter.")
|
biological data by Michael Whitlock and Dolph Schluter.")
|
||||||
(license license:gpl2)))
|
(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)))
|
||||||
|
|
Loading…
Reference in New Issue