diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/r-clisymbols/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/r-clisymbols/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-clisymbols/package.py b/var/spack/repos/builtin/packages/r-clisymbols/package.py new file mode 100644 index 0000000000..057fa67b9b --- /dev/null +++ b/var/spack/repos/builtin/packages/r-clisymbols/package.py @@ -0,0 +1,19 @@ +# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class RClisymbols(RPackage): + """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. Many symbols were taken from the 'figures' 'npm' package + (see <https://github.com/sindresorhus/figures>).""" + + homepage = "https://github.com/gaborcsardi/clisymbols" + url = "https://cloud.r-project.org/src/contrib/clisymbols_1.2.0.tar.gz" + list_url = "https://cloud.r-project.org/src/contrib/Archive/clisymbols" + + version('1.2.0', sha256='0649f2ce39541820daee3ed408d765eddf83db5db639b493561f4e5fbf88efe0') |