ftxui: init at unstable-2021-08-13

This commit is contained in:
IvarWithoutBones 2021-08-19 17:16:50 +02:00
parent 14b0f20fa1
commit d0f1a3922a
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, doxygen
, graphviz
}:
stdenv.mkDerivation rec {
pname = "ftxui";
version = "unstable-2021-08-13";
src = fetchFromGitHub {
owner = "ArthurSonzogni";
repo = pname;
rev = "69b0c9e53e523ac43a303964fc9c5bc0da7d5d61";
sha256 = "0cbljksgy1ckw34h0mq70s8sma0p16sznn4z9r4hwv76y530m0ww";
};
nativeBuildInputs = [
cmake
doxygen
graphviz
];
meta = with lib; {
homepage = "https://github.com/ArthurSonzogni/FTXUI";
description = "Functional Terminal User Interface for C++";
license = licenses.mit;
maintainers = [ maintainers.ivar ];
platforms = platforms.unix;
};
}

View File

@ -5041,6 +5041,8 @@ with pkgs;
ftop = callPackage ../os-specific/linux/ftop { };
ftxui = callPackage ../development/libraries/ftxui { };
fsarchiver = callPackage ../tools/archivers/fsarchiver { };
fsfs = callPackage ../tools/filesystems/fsfs { };