gnu: r-lifecycle: Update to 0.2.0.

* gnu/packages/cran.scm (r-lifecycle): Update to 0.2.0.
[native-inputs]: Add r-knitr.
This commit is contained in:
Ricardo Wurmus 2020-03-07 20:03:32 +01:00
parent a97c648c61
commit d8545835bd
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -15951,19 +15951,21 @@ (define-public r-insol
(define-public r-lifecycle
(package
(name "r-lifecycle")
(version "0.1.0")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "lifecycle" version))
(sha256
(base32
"11rk7hkw63rfrf4aqmb4xrb88kg95xh8hajpjvjfwjym2v02h74n"))))
"0912865c6675fsblrfdk6s568krsj1x8qbk1kipy7m05xs6nwx19"))))
(properties `((upstream-name . "lifecycle")))
(build-system r-build-system)
(propagated-inputs
`(("r-glue" ,r-glue)
("r-rlang" ,r-rlang)))
(native-inputs
`(("r-knitr" ,r-knitr))) ; for vignettes
(home-page "https://github.com/r-lib/lifecycle")
(synopsis "Manage the life cycle of your package functions")
(description