Merge pull request #134815 from IvarWithoutBones/init/ftxui

This commit is contained in:
Sandro 2021-08-19 18:55:45 +02:00 committed by GitHub
commit fcbbb82ffd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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 { };