diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-07-02 11:21:49 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-07-17 22:38:23 +0200 |
commit | 5fd662cd4d5e52181463ed120a9e6352715b1cb3 (patch) | |
tree | 0dfe7cc21a91c71860c21f327636cbdc3c858cd1 | |
parent | 02ce86749bcda87d110d095efd12343293e17e96 (diff) | |
download | guix-5fd662cd4d5e52181463ed120a9e6352715b1cb3.tar guix-5fd662cd4d5e52181463ed120a9e6352715b1cb3.tar.gz |
gnu: Add r-minty.
* gnu/packages/cran.scm (r-minty): New variable.
Change-Id: I1d811bd59c8e194f5e92d2f4fa9108daa2874785
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
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") |