gnu: Add r-cards.

* gnu/packages/cran.scm (r-cards): New variable.

Change-Id: I17c61d254407574610f78cb4afd21d8829632922
This commit is contained in:
Ricardo Wurmus 2024-09-02 11:35:59 +02:00
parent 18d02443e1
commit ab2f80e6cd
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -382,6 +382,34 @@ (define-public r-caic4
evaluation.")
(license license:gpl2+)))
(define-public r-cards
(package
(name "r-cards")
(version "0.2.2")
(source
(origin
(method url-fetch)
(uri (cran-uri "cards" version))
(sha256
(base32 "1sw4qic8p539lxx0rz3wy87k3jr06izdlwnvli41s8ij8yl4s124"))))
(properties `((upstream-name . "cards")))
(build-system r-build-system)
(propagated-inputs (list r-cli
r-dplyr
r-glue
r-rlang
r-tidyr
r-tidyselect))
(home-page "https://github.com/insightsengineering/cards")
(synopsis "Analysis Results Data")
(description
"This package lets you construct @dfn{Clinical Data Interchange Standards
Consortium} (CDISC) compliant Analysis Results Data objects. These objects
are used and re-used to construct summary tables, visualizations, and written
reports. The package also exports utilities for working with these objects
and creating new Analysis Results Data objects.")
(license license:asl2.0)))
(define-public r-castor
(package
(name "r-castor")