twitch-tui: init at 1.6.0
This commit is contained in:
parent
93b3eb81f4
commit
d20fae6ff8
@ -0,0 +1,25 @@
|
||||
{ lib, fetchFromGitHub, rustPlatform, pkg-config, openssl }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "twitch-tui";
|
||||
version = "1.6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Xithrius";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-144yn/QQPIZJOgqKFUWjB7KCmEKfNpj6XjMGhTpQdEQ=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
cargoHash = "sha256-zUeI01EyXsuoKzHbpVu3jyA3H2aBk6wMY+GW3h3v8vc=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Twitch chat in the terminal";
|
||||
homepage = "https://github.com/Xithrius/twitch-tui";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.taha ];
|
||||
};
|
||||
}
|
@ -5029,6 +5029,8 @@ with pkgs;
|
||||
|
||||
keyd = callPackage ../tools/inputmethods/keyd { };
|
||||
|
||||
twitch-tui = callPackage ../applications/networking/instant-messengers/twitch-tui { };
|
||||
|
||||
gebaar-libinput = callPackage ../tools/inputmethods/gebaar-libinput { stdenv = gcc10StdenvCompat; };
|
||||
|
||||
kime = callPackage ../tools/inputmethods/kime { };
|
||||
|
Loading…
Reference in New Issue
Block a user