mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-10 21:29:09 -05:00
gnu: Add r-cachem.
* gnu/packages/cran.scm (r-cachem): New variable.
This commit is contained in:
parent
fa6cc510ea
commit
bfb7791cb0
1 changed files with 24 additions and 0 deletions
|
@ -126,6 +126,30 @@ (define-public r-brio
|
||||||
files and provide more explicit control over line endings.")
|
files and provide more explicit control over line endings.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public r-cachem
|
||||||
|
(package
|
||||||
|
(name "r-cachem")
|
||||||
|
(version "1.0.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "cachem" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0y3jb96lyn3vc3nq8gs9x669w3xp69vdg5xc69qy0l356r39gp3r"))))
|
||||||
|
(properties `((upstream-name . "cachem")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-fastmap" ,r-fastmap)
|
||||||
|
("r-rlang" ,r-rlang)))
|
||||||
|
(home-page "https://cachem.r-lib.org/")
|
||||||
|
(synopsis "Cache R objects with automatic pruning")
|
||||||
|
(description
|
||||||
|
"This package provides key-value stores with automatic pruning. Caches
|
||||||
|
can limit either their total size or the age of the oldest object (or both),
|
||||||
|
automatically pruning objects to maintain the constraints.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public r-diffobj
|
(define-public r-diffobj
|
||||||
(package
|
(package
|
||||||
(name "r-diffobj")
|
(name "r-diffobj")
|
||||||
|
|
Loading…
Reference in a new issue