diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-09-11 02:54:33 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-09-18 11:33:24 +0200 |
commit | 1b663184ebc385f826292bdf11559015a0d546f0 (patch) | |
tree | 8f639037ae60049e86edcde67768405adfb7cc42 | |
parent | b561f5636f23552f7881483494e8418a4e914a7a (diff) | |
download | guix-1b663184ebc385f826292bdf11559015a0d546f0.tar.gz guix-1b663184ebc385f826292bdf11559015a0d546f0.zip |
gnu: Add r-timedate.
* gnu/packages/cran.scm (r-timedate): New variable.
-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 19cc04c34b..d94dd56916 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -1053,3 +1053,24 @@ the Kaplan-Meier and Aalen-Johansen methods.") techniques from R packages and provides a common interface for calling the methods.") (license license:gpl3))) + +(define-public r-timedate + (package + (name "r-timedate") + (version "3012.100") + (source + (origin + (method url-fetch) + (uri (cran-uri "timeDate" version)) + (sha256 + (base32 + "0cn4h23y2y2bbg62qgm79xx4cvfla5xbpmi9hbdvkvpmm5yfyqk2")))) + (properties `((upstream-name . "timeDate"))) + (build-system r-build-system) + (home-page "https://www.rmetrics.org") + (synopsis "Chronological and calendar objects") + (description + "This package provides an environment for teaching \"Financial +Engineering and Computational Finance\" and for managing chronological and +calendar objects.") + (license license:gpl2+))) |