twitch-tui: 2.5.1 -> 2.6.0

This commit is contained in:
R. Ryantm 2023-10-28 07:09:05 +00:00 committed by Weijia Wang
parent 55acef4031
commit 287a8597d0
2 changed files with 6 additions and 4 deletions

View File

@ -6,20 +6,21 @@
, openssl , openssl
, CoreServices , CoreServices
, Security , Security
, SystemConfiguration
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "twitch-tui"; pname = "twitch-tui";
version = "2.5.1"; version = "2.6.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Xithrius"; owner = "Xithrius";
repo = pname; repo = pname;
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-oqsLqmyLrvb8u9cj68OemUfunbP98/BZjmoGl1Mctrk="; hash = "sha256-UPcJHuqDnyg2U3aNtd44dqt2iC2iLkR4wzsOjAByISw=";
}; };
cargoHash = "sha256-DEHMF6sTH3BF8lqOV5G4F3+Tsafrhzr0YLqSgV3gq9I="; cargoHash = "sha256-HFBCLYjrDAPU2EZ1NQ+A0mAFo5jvj79Ghge6+D1PBAg=";
nativeBuildInputs = [ nativeBuildInputs = [
pkg-config pkg-config
@ -30,6 +31,7 @@ rustPlatform.buildRustPackage rec {
] ++ lib.optionals stdenv.isDarwin [ ] ++ lib.optionals stdenv.isDarwin [
CoreServices CoreServices
Security Security
SystemConfiguration
]; ];
meta = with lib; { meta = with lib; {

View File

@ -6983,7 +6983,7 @@ with pkgs;
keymapper = callPackage ../tools/inputmethods/keymapper { }; keymapper = callPackage ../tools/inputmethods/keymapper { };
twitch-tui = callPackage ../applications/networking/instant-messengers/twitch-tui { twitch-tui = callPackage ../applications/networking/instant-messengers/twitch-tui {
inherit (darwin.apple_sdk_11_0.frameworks) Security CoreServices; inherit (darwin.apple_sdk_11_0.frameworks) Security CoreServices SystemConfiguration;
}; };
gebaar-libinput = callPackage ../tools/inputmethods/gebaar-libinput { stdenv = gcc10StdenvCompat; }; gebaar-libinput = callPackage ../tools/inputmethods/gebaar-libinput { stdenv = gcc10StdenvCompat; };