From ef1fbeb61a9c829a53aefea338080e595dc3afbd Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 16 Feb 2026 17:04:54 +0100 Subject: [PATCH] gnu: r-rstudioapi: Move to (gnu packages cran). * gnu/packages/statistics.scm (r-rstudioapi): Move from here... * gnu/packages/cran.scm (r-rstudioapi): ...to here. Change-Id: I3f7861d6978a16fe7946ae15f2908d66388ac53a --- gnu/packages/cran.scm | 20 ++++++++++++++++++++ gnu/packages/statistics.scm | 20 -------------------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index fe09ae94af..a679a52198 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7517,6 +7517,26 @@ interface compliant with the DBI package. The source for the SQLite engine is included.") (license license:lgpl2.0+))) +(define-public r-rstudioapi + (package + (name "r-rstudioapi") + (version "0.18.0") + (source (origin + (method url-fetch) + (uri (cran-uri "rstudioapi" version)) + (sha256 + (base32 + "1ggxhrc4zd984y1qx5m2w2dqpmwjhwp7ha39v7ivvlw10gqfwjcn")))) + (build-system r-build-system) + (native-inputs + (list r-knitr)) + (home-page "https://cran.r-project.org/web/packages/rstudioapi") + (synopsis "Safely access the RStudio API") + (description + "This package provides functions to access the RStudio API and provide +informative error messages when it's not available.") + (license license:expat))) + (define-public r-runner (package (name "r-runner") diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index dd3b7df4c9..3a1c92aac3 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1681,26 +1681,6 @@ the versions that @code{r-release} and @code{r-oldrel} refer to, and also all previous R versions and their release dates.") (license license:expat))) -(define-public r-rstudioapi - (package - (name "r-rstudioapi") - (version "0.18.0") - (source (origin - (method url-fetch) - (uri (cran-uri "rstudioapi" version)) - (sha256 - (base32 - "1ggxhrc4zd984y1qx5m2w2dqpmwjhwp7ha39v7ivvlw10gqfwjcn")))) - (build-system r-build-system) - (native-inputs - (list r-knitr)) - (home-page "https://cran.r-project.org/web/packages/rstudioapi") - (synopsis "Safely access the RStudio API") - (description - "This package provides functions to access the RStudio API and provide -informative error messages when it's not available.") - (license license:expat))) - (define-public r-segmented (package (name "r-segmented")