20 lines
856 B
Python
20 lines
856 B
Python
# Copyright 2013-2020 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')
|