rekado pushed a commit to branch master
in repository guix.
commit 5fd662cd4d5e52181463ed120a9e6352715b1cb3
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Tue Jul 2 11:21:49 2024 +0200
gnu: Add r-minty.
* gnu/packages/cran.scm (r-minty): New variable.
Change-Id: I1d811bd59c8e194f5e92d2f4fa9108daa2874785
---
gnu/packages/cran.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 4106d91243..96da38a300 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6535,6 +6535,26 @@ named elements: the @code{status}, the @code{headers},
and the @code{body}.")
work well on small screens.")
(license license:gpl3)))
+(define-public r-minty
+ (package
+ (name "r-minty")
+ (version "0.0.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "minty" version))
+ (sha256
+ (base32 "1kbs4f36s5bnjpc5wcqawbk154n9wjpf549hsjj4xdcg7ihcdgfg"))))
+ (properties `((upstream-name . "minty")))
+ (build-system r-build-system)
+ (propagated-inputs (list r-cpp11 r-tzdb))
+ (home-page "https://gesistsa.github.io/minty/")
+ (synopsis "Minimal type guesser")
+ (description
+ "This is a port of the type guesser from the @code{readr} package, the
+so-called readr first edition parsing engine, now superseded by vroom.")
+ (license license:expat)))
+
(define-public r-feather
(package
(name "r-feather")