depot/third_party/nixpkgs/pkgs/tools/misc/ttchat/default.nix
Default email 8a45d4525b Project import generated by Copybara.
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
2022-03-30 11:31:56 +02:00

23 lines
613 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "ttchat";
version = "0.1.6";
src = fetchFromGitHub {
owner = "atye";
repo = "ttchat";
rev = "v${version}";
sha256 = "sha256-Km8aBThs2h8vVpQQaN/OuDeQcrewhP0hMMRuU8/1Ilk=";
};
vendorSha256 = "sha256-pJAwx7RmD2sSHsz1DxtsU7bjC/b0JujlrFeGL6zmTiI=";
meta = with lib; {
description = "Connect to a Twitch channel's chat from your terminal";
homepage = "https://github.com/atye/ttchat";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ wolfangaukang ];
};
}