diff options
author | zimoun <zimon.toutoune@gmail.com> | 2022-11-17 02:46:41 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-11-24 12:31:11 +0100 |
commit | 8f67799a1b98dffedd63c9fea2f365aedce80cdb (patch) | |
tree | 5436a163cebca1267f29fec04e23069bc79d8c45 /gnu | |
parent | 176fd3b052eb70f780dc797539063cd191b49a53 (diff) | |
download | guix-8f67799a1b98dffedd63c9fea2f365aedce80cdb.tar.gz guix-8f67799a1b98dffedd63c9fea2f365aedce80cdb.zip |
gnu: Add r-gson.
* gnu/packages/cran.scm (r-gson): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 06b3c5daac..d67b72892d 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -599,6 +599,27 @@ Google. @code{googleVis} makes use of the internal R HTTP server to display the output locally.") (license license:gpl2+))) +(define-public r-gson + (package + (name "r-gson") + (version "0.0.9") + (source (origin + (method url-fetch) + (uri (cran-uri "gson" version)) + (sha256 + (base32 + "065ify3i7zqwi7h5jzr7kdgr358kwgw6xrkvvmrznbl7s9f7d57n")))) + (properties `((upstream-name . "gson"))) + (build-system r-build-system) + (propagated-inputs (list r-jsonlite r-rlang r-tidyr)) + (home-page "https://cran.r-project.org/package=gson") + (synopsis "Base Class and Methods for 'gson' Format") + (description + "This packages proposes a new file format named @code{gson} for storing +gene set and related information, and provides read, write and other utilities +to process this file format.") + (license license:artistic2.0))) + (define-public r-guix-install (package (name "r-guix-install") |