diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-10-28 19:21:26 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-10-30 21:33:25 +0100 |
commit | 153e5b2ddc2d4ffa8cdfad4f5a3154be0b115551 (patch) | |
tree | 2ee61e0b454d11a2352a9eecd38c5643a20a6259 /gnu | |
parent | d6871153c8217f79cb2fe10a002eaaa9c4340e34 (diff) | |
download | patches-153e5b2ddc2d4ffa8cdfad4f5a3154be0b115551.tar patches-153e5b2ddc2d4ffa8cdfad4f5a3154be0b115551.tar.gz |
gnu: Add r-clisymbols.
* gnu/packages/cran.scm (r-clisymbols): New variable.
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 bc99c3e6df..74e8367a29 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -6759,3 +6759,23 @@ back to file after modifications.") "This package provides a cross-platform interface to file system operations, built on top of the libuv C library.") (license license:gpl3))) + +(define-public r-clisymbols + (package + (name "r-clisymbols") + (version "1.2.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "clisymbols" version)) + (sha256 + (base32 + "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86")))) + (build-system r-build-system) + (home-page "https://github.com/gaborcsardi/clisymbols") + (synopsis "Unicode symbols at the R prompt") + (description + "This package provides a small subset of Unicode symbols, that are useful +when building command line applications. They fall back to alternatives on +terminals that do not support Unicode.") + (license license:expat))) |