mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 05:39:41 -05:00
gnu: Add r-spelling.
* gnu/packages/cran.scm (r-spelling): New variable.
This commit is contained in:
parent
8f78b6fcf5
commit
5ae09d7979
1 changed files with 30 additions and 0 deletions
|
@ -1820,6 +1820,36 @@ (define-public r-tablerdash
|
|||
contained in the navigation bar.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-spelling
|
||||
(package
|
||||
(name "r-spelling")
|
||||
(version "2.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "spelling" version))
|
||||
(sha256
|
||||
(base32
|
||||
"179nj9w1v27qq9q5240ddvggp0795998sxyqjvbqjvq9dmach3bl"))))
|
||||
(properties `((upstream-name . "spelling")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-commonmark" ,r-commonmark)
|
||||
("r-hunspell" ,r-hunspell)
|
||||
("r-knitr" ,r-knitr)
|
||||
("r-xml2" ,r-xml2)))
|
||||
(home-page "https://docs.ropensci.org/spelling/")
|
||||
(synopsis "Tools for spell checking in R")
|
||||
(description
|
||||
"This is an R package for spell checking common document formats
|
||||
including LaTeX, markdown, manual pages, and DESCRIPTION files. It includes
|
||||
utilities to automate checking of documentation and vignettes as a unit test
|
||||
during @code{R CMD check}. Both British and American English are supported
|
||||
out of the box and other languages can be added. In addition, packages may
|
||||
define a wordlist to allow custom terminology without having to abuse
|
||||
punctuation.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-crosstalk
|
||||
(package
|
||||
(name "r-crosstalk")
|
||||
|
|
Loading…
Reference in a new issue