summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2026-03-12 09:54:51 +0100
committerRicardo Wurmus <rekado@elephly.net>2026-04-02 07:37:08 +0200
commit66f0fbab6ffb412d566c8332e2074c925059cf02 (patch)
treecb64c202dbbaa3ee186fc1fafadc11b65e1e54e0
parent03e46fcf61e53f48ad45b55aacd5f8f3d49892c3 (diff)
gnu: Add r-easy-utils.
* gnu/packages/cran.scm (r-easy-utils): New variable. Change-Id: I311f043a02fe13bda64a9e3679e20d72aa001b2d
-rw-r--r--gnu/packages/cran.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index d2f15c0dea2..85d2feb7605 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -3814,6 +3814,27 @@ Splines\" <doi:10.1214/aos/1176347963>. The term \"MARS\" is trademarked and
thus not used in the name of the package.")
(license license:gpl3)))
+(define-public r-easy-utils
+ (package
+ (name "r-easy-utils")
+ (version "0.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "easy.utils" version))
+ (sha256
+ (base32 "01p6hp7ajb7k9disdzkxvgjinv9wqxhk4k24r89q31ljyvkfrqw6"))))
+ (properties `((upstream-name . "easy.utils")))
+ (build-system r-build-system)
+ (propagated-inputs (list r-dplyr r-fastmatch r-rlang r-scales))
+ (home-page "https://github.com/ycli1995/easy.utils")
+ (synopsis "Frequently used functions for easy R programming")
+ (description
+ "This package provides some utility functions for validation and data
+manipulation. These functions can be helpful to reduce internal codes
+everywhere in package development.")
+ (license license:expat)))
+
(define-public r-effects
(package
(name "r-effects")