mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
ftxui: init at unstable-2021-08-13
This commit is contained in:
parent
14b0f20fa1
commit
d0f1a3922a
33
pkgs/development/libraries/ftxui/default.nix
Normal file
33
pkgs/development/libraries/ftxui/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user