diff options
author | Ricardo Wurmus <[email protected]> | 2025-01-23 15:40:48 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-01-23 15:59:20 +0100 |
commit | 916d58635ac574cc04dcd4605a0bc58c6db625c4 (patch) | |
tree | 3bebb6f4849c4a3846ea861d788d84031f1cde16 | |
parent | aa3167c39bdfce6497cb1f2d04964c96b4776a35 (diff) |
gnu: Add r-rcppcctz.
* gnu/packages/cran.scm (r-rcppcctz): New variable.
Change-Id: Iba226a97d10474b3e4519a30224691ec585065ae
-rw-r--r-- | gnu/packages/cran.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index b67a78233c..0028cd5950 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -8828,6 +8828,31 @@ and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see @code{citation(\"Rcpp\")} for details on these last two.") (license license:gpl2+))) +(define-public r-rcppcctz + (package + (name "r-rcppcctz") + (version "0.2.13") + (source + (origin + (method url-fetch) + (uri (cran-uri "RcppCCTZ" version)) + (sha256 + (base32 "1wmbyaj08fbl4g47aq0mfkkvqwpah3d2j94fzc813dijxlsi847l")))) + (properties + `((upstream-name . "RcppCCTZ") + (updater-extra-native-inputs . ("tzdata-for-tests")))) + (build-system r-build-system) + (propagated-inputs (list r-rcpp)) + (native-inputs (list r-tinytest tzdata-for-tests)) + (home-page "https://github.com/eddelbuettel/rcppcctz") + (synopsis "Rcpp bindings for the CCTZ library") + (description + "Rcpp access to the CCTZ timezone library is provided. CCTZ is a C++ +library for translating between absolute and civil times using the rules of a +time zone. The CCTZ source code is included in this package.") + (license (list license:gpl2+ + license:asl2.0)))) ;for CCTZ + (define-public r-rcppdate (package (name "r-rcppdate") |