Merge pull request #209520 from r-ryantm/auto-update/twitch-tui

twitch-tui: 1.6.0 -> 2.0.2
This commit is contained in:
Fabian Affolter 2023-01-08 00:20:58 +01:00 committed by GitHub
commit c3d045bd2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,23 +9,31 @@
rustPlatform.buildRustPackage rec {
pname = "twitch-tui";
version = "1.6.0";
version = "2.0.2";
src = fetchFromGitHub {
owner = "Xithrius";
repo = pname;
rev = "v${version}";
sha256 = "sha256-144yn/QQPIZJOgqKFUWjB7KCmEKfNpj6XjMGhTpQdEQ=";
rev = "refs/tags/v${version}";
hash = "sha256-4gEE2JCYNxPOV47w/wMRvYn5YJdgvlYl+fkk6qcXLr8=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ];
cargoHash = "sha256-IYk01mueNZu791LPdkB79VaxsFXZbqEFDbpw1ckYTMo=";
cargoHash = "sha256-zUeI01EyXsuoKzHbpVu3jyA3H2aBk6wMY+GW3h3v8vc=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
] ++ lib.optionals stdenv.isDarwin [
Security
];
meta = with lib; {
description = "Twitch chat in the terminal";
homepage = "https://github.com/Xithrius/twitch-tui";
changelog = "https://github.com/Xithrius/twitch-tui/releases/tag/v${version}";
license = licenses.mit;
maintainers = [ maintainers.taha ];
};