about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/twitch-tui
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-10-28 07:09:05 +0000
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-11-04 02:02:31 +0100
commit287a8597d0a22bf33a8e7c9633da08a4fbff2a10 (patch)
tree799850184a1c760ac857ce308ee841ab2924eaca /pkgs/applications/networking/instant-messengers/twitch-tui
parent55acef40315608123114a79613afd8a2ac1c5b53 (diff)
twitch-tui: 2.5.1 -> 2.6.0
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/twitch-tui')
-rw-r--r--pkgs/applications/networking/instant-messengers/twitch-tui/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/applications/networking/instant-messengers/twitch-tui/default.nix b/pkgs/applications/networking/instant-messengers/twitch-tui/default.nix
index 6ca9bdc0e7643..89405033bcaca 100644
--- a/pkgs/applications/networking/instant-messengers/twitch-tui/default.nix
+++ b/pkgs/applications/networking/instant-messengers/twitch-tui/default.nix
@@ -6,20 +6,21 @@
 , openssl
 , CoreServices
 , Security
+, SystemConfiguration
 }:
 
 rustPlatform.buildRustPackage rec {
   pname = "twitch-tui";
-  version = "2.5.1";
+  version = "2.6.0";
 
   src = fetchFromGitHub {
     owner = "Xithrius";
     repo = pname;
     rev = "refs/tags/v${version}";
-    hash = "sha256-oqsLqmyLrvb8u9cj68OemUfunbP98/BZjmoGl1Mctrk=";
+    hash = "sha256-UPcJHuqDnyg2U3aNtd44dqt2iC2iLkR4wzsOjAByISw=";
   };
 
-  cargoHash = "sha256-DEHMF6sTH3BF8lqOV5G4F3+Tsafrhzr0YLqSgV3gq9I=";
+  cargoHash = "sha256-HFBCLYjrDAPU2EZ1NQ+A0mAFo5jvj79Ghge6+D1PBAg=";
 
   nativeBuildInputs = [
     pkg-config
@@ -30,6 +31,7 @@ rustPlatform.buildRustPackage rec {
   ] ++ lib.optionals stdenv.isDarwin [
     CoreServices
     Security
+    SystemConfiguration
   ];
 
   meta = with lib; {