diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-05-04 07:15:39 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-05-04 07:27:44 +0200 |
commit | 4c2826df656e3c513fba140a0c82b763c93fc83b (patch) | |
tree | 85fcf23dc272f741f115cd9807b472b146aef205 /gnu/packages/cran.scm | |
parent | 11108a9ab459668ee1ba81a6fbca64d224d35365 (diff) | |
download | guix-4c2826df656e3c513fba140a0c82b763c93fc83b.tar.gz |
gnu: Add r-ids.
* gnu/packages/cran.scm (r-ids): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 68a2dff47a..9224a6d16d 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -206,6 +206,30 @@ visualization of their differences.") (description "This package lets you manage Google Drive files from R.") (license license:expat))) +(define-public r-ids + (package + (name "r-ids") + (version "1.0.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "ids" version)) + (sha256 + (base32 + "1s6ga94gds5ydr9f8qbjfgfpg2dvbnkcrlybqlb33hk3c0c2l8dn")))) + (properties `((upstream-name . "ids"))) + (build-system r-build-system) + (propagated-inputs + `(("r-openssl" ,r-openssl) + ("r-uuid" ,r-uuid))) + (native-inputs `(("r-knitr" ,r-knitr))) + (home-page "https://github.com/richfitz/ids") + (synopsis "Generate random identifiers") + (description + "This package lets you generate random or human readable and +pronounceable identifiers.") + (license license:expat))) + (define-public r-waldo (package (name "r-waldo") |