This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new d1a5056095 gnu: Add r-bigd.
d1a5056095 is described below
commit d1a50560956a0c400de68f0bd852c5b83182efe4
Author: Tor-björn Claesson <[email protected]>
AuthorDate: Tue Apr 8 11:11:28 2025 +0300
gnu: Add r-bigd.
* gnu/packages/cran.scm (r-bigd): New variable.
Change-Id: I164034f9823f383628fec5361e6ebeff460c43ec
---
gnu/packages/cran.scm | 31 ++++++++++++++++++++++++++++++-
1 file changed, 30 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 6fdfec807e..66cc285e03 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -39,7 +39,7 @@
;;; Copyright © 2022 Greg Hogan <[email protected]>
;;; Copyright © 2024 Marco Baggio <[email protected]>
;;; Copyright © 2024, 2025 Spencer King <[email protected]>
-;;; Copyright © 2024 Tor-björn Claesson <[email protected]>
+;;; Copyright © 2024-2025 Tor-björn Claesson <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -928,6 +928,35 @@ package provides the blob object, a list of raw vectors,
suitable for use as
a column in data frame.")
(license license:gpl3+)))
+(define-public r-bigd
+ (package
+ (name "r-bigd")
+ (version "0.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "bigD" version))
+ (sha256
+ (base32 "1lc8c3g22sb3mkmr0vjw6x92cs04gdfsny1iii0v3xj9337v1cc6"))))
+ (properties
+ '((upstream-name . "bigD")
+ (updater-extra-native-inputs . ("r-vctrs"))))
+ (build-system r-build-system)
+ (native-inputs (list r-testthat r-vctrs))
+ (home-page "https://cran.r-project.org/package=bigD")
+ (synopsis "Flexibly format dates and times to a given locale")
+ (description
+ "Format dates and times flexibly and to whichever locales make sense.
+This package parses dates, times, and date-times in various formats (including
+string-based ISO 8601 constructions). The formatting syntax gives the user
+many options for formatting the date and time output in a precise manner.
+Time zones in the input can be expressed in multiple ways and there are many
+options for formatting time zones in the output as well. Several of the
+provided helper functions allow for automatic generation of locale-aware
+formatting patterns based on date/time skeleton formats and standardized
+date/time formats with varying specificity.")
+ (license license:expat)))
+
(define-public r-bma
(package
(name "r-bma")