biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / ttchat / default.nix
blobec62357cbbeddaeefbb237ea2286bf3e16f2eed6
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "ttchat";
5   version = "0.1.10";
7   src = fetchFromGitHub {
8     owner = "atye";
9     repo = "ttchat";
10     rev = "v${version}";
11     hash = "sha256-Ezlqji/j6nyCzc1jrfB1MZR4ugKAa5D5CL6wfuP6PsY=";
12   };
14   vendorHash = "sha256-6GcbEGC1O+lcTO+GsaVXOO69yIHMPywXJy7OFX15/eI=";
16   meta = with lib; {
17     description = "Connect to a Twitch channel's chat from your terminal";
18     homepage = "https://github.com/atye/ttchat";
19     license = licenses.asl20;
20     maintainers = [ ];
21     mainProgram = "ttchat";
22   };