nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildGoModule,
4 fetchFromGitHub,
5}:
6
7buildGoModule rec {
8 pname = "ttchat";
9 version = "0.1.10";
10
11 src = fetchFromGitHub {
12 owner = "atye";
13 repo = "ttchat";
14 rev = "v${version}";
15 hash = "sha256-Ezlqji/j6nyCzc1jrfB1MZR4ugKAa5D5CL6wfuP6PsY=";
16 };
17
18 vendorHash = "sha256-6GcbEGC1O+lcTO+GsaVXOO69yIHMPywXJy7OFX15/eI=";
19
20 meta = {
21 description = "Connect to a Twitch channel's chat from your terminal";
22 homepage = "https://github.com/atye/ttchat";
23 license = lib.licenses.asl20;
24 maintainers = [ ];
25 mainProgram = "ttchat";
26 };
27}