mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add r-stringfish.
* gnu/packages/cran.scm (r-stringfish): New variable.
This commit is contained in:
parent
eb632a28db
commit
419315d4e6
1 changed files with 26 additions and 0 deletions
|
@ -29986,3 +29986,29 @@ (define-public r-exactextractr
|
|||
the @code{raster} package that is suitable for extracting raster values using
|
||||
@code{sf} polygons.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public r-stringfish
|
||||
(package
|
||||
(name "r-stringfish")
|
||||
(version "0.15.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "stringfish" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0m8485p1gb5z2n2g5nyr38zixw4iv8xxm7bxspxlxvx6alhn03pn"))))
|
||||
(properties `((upstream-name . "stringfish")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-rcpp" ,r-rcpp)
|
||||
("r-rcppparallel" ,r-rcppparallel)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
("r-knitr" ,r-knitr)))
|
||||
(home-page "https://github.com/traversc/stringfish")
|
||||
(synopsis "Alternative string implementation")
|
||||
(description
|
||||
"This package provides an extendable, performant and multithreaded
|
||||
@code{alt-string} implementation backed by C++ vectors and strings.")
|
||||
(license license:gpl3)))
|
||||
|
|
Loading…
Reference in a new issue