Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
580 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "ttchat";
version = "0.1.10";
src = fetchFromGitHub {
owner = "atye";
repo = "ttchat";
rev = "v${version}";
hash = "sha256-Ezlqji/j6nyCzc1jrfB1MZR4ugKAa5D5CL6wfuP6PsY=";
};
vendorHash = "sha256-6GcbEGC1O+lcTO+GsaVXOO69yIHMPywXJy7OFX15/eI=";
meta = with lib; {
description = "Connect to a Twitch channel's chat from your terminal";
homepage = "https://github.com/atye/ttchat";
license = licenses.asl20;
maintainers = [ ];
mainProgram = "ttchat";
};
}