diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-01-24 13:01:52 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-01-24 13:01:52 +0100 |
commit | d5e7ad7188b60b39113a61e1802eaa26aaa6c5e6 (patch) | |
tree | 61eb3e29f70f9c4f60ad9b9ecc7ddbd5d447c089 /gnu | |
parent | 90b9cb12985d72733f08673a23663a30173b3966 (diff) | |
download | guix-d5e7ad7188b60b39113a61e1802eaa26aaa6c5e6.tar.gz guix-d5e7ad7188b60b39113a61e1802eaa26aaa6c5e6.zip |
gnu: Add r-tinylabels.
* gnu/packages/cran.scm (r-tinylabels): New variable.
Change-Id: Ie86de4daaf132cd32f896573be747f35e725258e
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 9083105b50..7a131861bc 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -10453,6 +10453,26 @@ their own grammars and easily expose them in R packages.") @dfn{Universally Unique Identifiers} (UUIDs).") (license license:expat))) +(define-public r-tinylabels + (package + (name "r-tinylabels") + (version "0.2.4") + (source + (origin + (method url-fetch) + (uri (cran-uri "tinylabels" version)) + (sha256 + (base32 "01pvnirma3wzfqnnz8zvyqajjyysjm3sd6813bgdhz199lcg7hhz")))) + (properties `((upstream-name . "tinylabels"))) + (build-system r-build-system) + (native-inputs (list r-knitr)) + (home-page "https://github.com/mariusbarth/tinylabels") + (synopsis "Lightweight variable labels") + (description + "This package lets you assign, extract, or remove variable labels from R +vectors.") + (license license:expat))) + (define-public r-tinytex (package (name "r-tinytex") |