guix_mirror_bot pushed a commit to branch r-team
in repository guix.

commit b93b55ac46b22d6e70db9ae4ee0b80c093553b9c
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 17:04:54 2026 +0100

    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 0b134629c7..413ac1f844 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -7470,6 +7470,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 5d5f70b54a..7f63ca56cb 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")

Reply via email to