ttchat: init at 0.1.6 (#161861)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
0ea10cf8d4
commit
121b2cf877
2 changed files with 25 additions and 0 deletions
pkgs
23
pkgs/tools/misc/ttchat/default.nix
Normal file
23
pkgs/tools/misc/ttchat/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -1121,6 +1121,8 @@ with pkgs;
|
|||
|
||||
topicctl = callPackage ../tools/misc/topicctl { };
|
||||
|
||||
ttchat = callPackage ../tools/misc/ttchat { };
|
||||
|
||||
veikk-linux-driver-gui = libsForQt5.callPackage ../tools/misc/veikk-linux-driver-gui { };
|
||||
|
||||
ventoy-bin = callPackage ../tools/cd-dvd/ventoy-bin { };
|
||||
|
|
Loading…
Reference in a new issue