diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2025-03-11 12:33:14 +0100 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2025-04-16 11:01:22 +0200 |
| commit | d0b35b85209e5eb384864900027f81cc9f69eb88 (patch) | |
| tree | 35fb9445054ad9b2f114e745018c8a5b1c6d2a96 /gnu | |
| parent | fa7054325ca51241cc2633eef0dbb52b817c4748 (diff) | |
gnu: r-pryr: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-pryr): Move from here...
* gnu/packages/cran.scm (r-pryr): ...to here.
Change-Id: I1380132504647eec8c0059610afae17ca01a9378
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/cran.scm | 21 | ||||
| -rw-r--r-- | gnu/packages/statistics.scm | 21 |
2 files changed, 21 insertions, 21 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index b365681ea41..8c4d2bd8818 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5567,6 +5567,27 @@ R packages that praise their users.") prototype-based, rather than class-based object oriented ideas.") (license license:gpl2+))) +(define-public r-pryr + (package + (name "r-pryr") + (version "0.1.6") + (source (origin + (method url-fetch) + (uri (cran-uri "pryr" version)) + (sha256 + (base32 + "013p2xxd51kr9ddx051cvn45mzgj44fm47nkchdb13l0885a7hb8")))) + (build-system r-build-system) + (propagated-inputs + (list r-codetools r-lobstr r-rcpp r-stringr)) + (native-inputs (list r-testthat)) + (home-page "https://github.com/hadley/pryr") + (synopsis "Tools for computing on the R language") + (description + "This package provides useful tools to pry back the covers of R and +understand the language at a deeper level.") + (license license:gpl2))) + (define-public r-rcolorbrewer (package (name "r-rcolorbrewer") diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 56fa671f493..7075ac2fc1a 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -547,27 +547,6 @@ available, greatly increasing its breadth and scope.") r-spatial r-survival)))) -(define-public r-pryr - (package - (name "r-pryr") - (version "0.1.6") - (source (origin - (method url-fetch) - (uri (cran-uri "pryr" version)) - (sha256 - (base32 - "013p2xxd51kr9ddx051cvn45mzgj44fm47nkchdb13l0885a7hb8")))) - (build-system r-build-system) - (propagated-inputs - (list r-codetools r-lobstr r-rcpp r-stringr)) - (native-inputs (list r-testthat)) - (home-page "https://github.com/hadley/pryr") - (synopsis "Tools for computing on the R language") - (description - "This package provides useful tools to pry back the covers of R and -understand the language at a deeper level.") - (license license:gpl2))) - (define-public r-testthat (package (name "r-testthat") |
