diff options
author | Lars-Dominik Braun <ldb@leibniz-psychology.org> | 2020-01-31 16:57:10 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-02-22 20:42:10 +0100 |
commit | 4f53ac4b9b5f92240fcdf9b3696de580a7647c7e (patch) | |
tree | 7233ad030d71d2757a1d940806980505aaad11c8 | |
parent | 38339c4cab9f40db7c70c15b56827f1954b4f53b (diff) | |
download | patches-4f53ac4b9b5f92240fcdf9b3696de580a7647c7e.tar patches-4f53ac4b9b5f92240fcdf9b3696de580a7647c7e.tar.gz |
gnu: Add r-isocodes.
* gnu/packages/cran.scm (r-isocodes): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 243f692e04..638be689cb 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19365,3 +19365,25 @@ matrices using the Armadillo and Intel TBB libraries. Among several built-in similarity/distance measures, computation of correlation, cosine similarity and Euclidean distance is particularly fast.") (license license:gpl3))) + +(define-public r-isocodes + (package + (name "r-isocodes") + (version "2019.12.22") + (source + (origin + (method url-fetch) + (uri (cran-uri "ISOcodes" version)) + (sha256 + (base32 + "1k2f2258bwzs0b3nxma9kcw395qkljvk514a7047rx4dn0iwd874")))) + (properties `((upstream-name . "ISOcodes"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/package=ISOcodes") + (synopsis "Selected ISO codes") + (description + "This package provides ISO language, territory, currency, script and +character codes. It provides ISO 639 language codes, ISO 3166 territory +codes, ISO 4217 currency codes, ISO 15924 script codes, and the ISO 8859 +character codes as well as the UN M.49 area codes.") + (license license:gpl2))) |