diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-02-13 15:21:35 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-02-13 16:18:41 +0100 |
commit | 1c7919251aee4c574b5814264f8393a6341a10dc (patch) | |
tree | 00440370008ddb9845fbfd00932f126b01d08317 /gnu/packages/cran.scm | |
parent | c555ccabcf53c0b28a1f93f33854dce57f776224 (diff) | |
download | patches-1c7919251aee4c574b5814264f8393a6341a10dc.tar patches-1c7919251aee4c574b5814264f8393a6341a10dc.tar.gz |
gnu: Add r-uuid.
* gnu/packages/cran.scm (r-uuid): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8f3a92b9a3..729cbc605b 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -2159,3 +2159,22 @@ display.") columns of data using the full range of colours provided by modern terminals.") (license license:gpl3))) + +(define-public r-uuid + (package + (name "r-uuid") + (version "0.1-2") + (source + (origin + (method url-fetch) + (uri (cran-uri "uuid" version)) + (sha256 + (base32 + "1gmisd630fc8ybg845hbg13wmm3pk3npaamrh5wqbc1nqd6p0wfx")))) + (build-system r-build-system) + (home-page "http://www.rforge.net/uuid") + (synopsis "Tools for generating and handling of UUIDs") + (description + "This package provides tools for generating and handling of +@dfn{Universally Unique Identifiers} (UUIDs).") + (license license:expat))) |