ftxui: unstable-2021-08-13 -> 2.0.0

This commit is contained in:
Ivar Scholten 2022-03-08 21:20:54 +01:00
parent b71a8e2383
commit 85e45b20cb

View file

@ -8,13 +8,13 @@
stdenv.mkDerivation rec {
pname = "ftxui";
version = "unstable-2021-08-13";
version = "2.0.0";
src = fetchFromGitHub {
owner = "ArthurSonzogni";
repo = pname;
rev = "69b0c9e53e523ac43a303964fc9c5bc0da7d5d61";
sha256 = "0cbljksgy1ckw34h0mq70s8sma0p16sznn4z9r4hwv76y530m0ww";
rev = "v${version}";
sha256 = "sha256-BfNUk2DbBpKMBEu1tQWl85tgjB/4NAh86VVSS9zAjKo=";
};
nativeBuildInputs = [
@ -23,9 +23,13 @@ stdenv.mkDerivation rec {
graphviz
];
# gtest and gbenchmark don't seem to generate any binaries
doCheck = false;
meta = with lib; {
homepage = "https://github.com/ArthurSonzogni/FTXUI";
description = "Functional Terminal User Interface for C++";
changelog = "https://github.com/ArthurSonzogni/FTXUI/blob/v${version}/CHANGELOG.md";
description = "Functional Terminal User Interface library for C++";
license = licenses.mit;
maintainers = [ maintainers.ivar ];
platforms = platforms.unix;