diff options
author | Lars-Dominik Braun <ldb@leibniz-psychology.org> | 2020-01-31 16:06:29 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-02-22 20:42:10 +0100 |
commit | 532b318020748c035b43f83611899e4ba0875ae1 (patch) | |
tree | 5e8818cca06a68ed15b9d59e79f84ae111288872 /gnu/packages | |
parent | dfecd5598e3d997a5729b228154f349c171dd03a (diff) | |
download | patches-532b318020748c035b43f83611899e4ba0875ae1.tar patches-532b318020748c035b43f83611899e4ba0875ae1.tar.gz |
gnu: Add r-xmisc.
* gnu/packages/cran.scm (r-xmisc): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cran.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 9fb160ba34..310b80a520 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19315,3 +19315,25 @@ Raftery, Appl.Statistics, 1989); it includes inference and basic methods.") univariate time series forecasts including exponential smoothing via state space models and automatic ARIMA modelling.") (license license:gpl3))) + +(define-public r-xmisc + (package + (name "r-xmisc") + (version "0.2.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "Xmisc" version)) + (sha256 + (base32 + "11gwlcyxhz1p50m68cnqrxmisdk99v8vrsbvyr7k67f0kvsznzs1")))) + (properties `((upstream-name . "Xmisc"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/package=Xmisc") + (synopsis + "Xiaobei's miscellaneous classes and functions") + (description + "This package provides Xiaobei's miscellaneous classes and functions, +which are useful when developing R packages for @dfn{object oriented +programming} (OOP) using R Reference Class.") + (license license:gpl2+))) |