python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / ttchat / default.nix
blobc01a10435528f4e12c9a8ba31b099b0f83d003c4
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "ttchat";
5   version = "0.1.7";
7   src = fetchFromGitHub {
8     owner = "atye";
9     repo = "ttchat";
10     rev = "v${version}";
11     sha256 = "sha256-+fPARVS1ILxrigHpvb+iNqz7Xw7+c/LmHJEeRxhCbhQ=";
12   };
14   vendorSha256 = "sha256-XWCjnHg0P7FCuiMjCV6ijy60h0u776GyiIC/k/KMW38=";
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     platforms = platforms.linux;
21     maintainers = with maintainers; [ wolfangaukang ];
22   };