1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-14 00:50:35 +02:00

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
This commit is contained in:
Ricardo Wurmus
2026-02-16 17:04:54 +01:00
committed by Andreas Enge
parent 30b2838df4
commit ef1fbeb61a
2 changed files with 20 additions and 20 deletions

View File

@@ -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")

View File

@@ -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")