mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add r-languageserver.
* gnu/packages/statistics.scm (r-languageserver): New variable.
This commit is contained in:
parent
fac2e1a110
commit
c07f499345
1 changed files with 39 additions and 0 deletions
|
@ -6160,6 +6160,45 @@ (define-public r-swne
|
|||
visualization, facilitating interpretation of the data.")
|
||||
(license license:gpl2))))
|
||||
|
||||
(define-public r-languageserver
|
||||
(let ((commit "004da9388f9b19990f031c8dc9b527fb406378ba")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "r-languageserver")
|
||||
(version (git-version "0.3.12" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/REditorSupport/languageserver")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "05f22bjpc87fngzq4jsk2q2yb2i3ha03b377r0wx15d0b8xaa1ix"))))
|
||||
(properties `((upstream-name . "languageserver")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
(list r-callr
|
||||
r-collections
|
||||
r-fs
|
||||
r-jsonlite
|
||||
r-lintr
|
||||
r-r6
|
||||
r-roxygen2
|
||||
r-stringi
|
||||
r-styler
|
||||
r-xml2
|
||||
r-xmlparsedata))
|
||||
(home-page "https://github.com/REditorSupport/languageserver")
|
||||
(synopsis "Language Server for R")
|
||||
(description
|
||||
"This package provides an implementation of the Language Server
|
||||
Protocol for R. The
|
||||
@url{https://microsoft.github.io/language-server-protocol/,Language Server
|
||||
protocol} is used by an editor client to integrate features like auto
|
||||
completion.")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public python-rpy2
|
||||
(package
|
||||
(name "python-rpy2")
|
||||
|
|
Loading…
Reference in a new issue