17 lines
595 B
Python
17 lines
595 B
Python
# Copyright 2013-2022 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 Ftxui(CMakePackage):
|
|
"""Functional Terminal (X) User interface.
|
|
A simple C++ library for terminal based user interfaces."""
|
|
|
|
homepage = "https://arthursonzogni.github.io"
|
|
url = "https://github.com/ArthurSonzogni/FTXUI/archive/refs/tags/v2.0.0.tar.gz"
|
|
|
|
version('2.0.0', sha256='d891695ef22176f0c09f8261a37af9ad5b262dd670a81e6b83661a23abc2c54f')
|