feat(3p/irccat): init at '06a985y4'

This is to be used for forwarding messages to our IRC channels.

Change-Id: I6362c6f50a22f504588a7161d41a170f4e7a6edc
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2073
Tested-by: BuildkiteCI
Reviewed-by: glittershark <grfn@gws.fyi>
Reviewed-by: lukegb <lukegb@tvl.fyi>
This commit is contained in:
Vincent Ambo 2020-11-08 01:30:34 +01:00 committed by tazjin
parent 31939acd6c
commit 8a6d00aceb

16
third_party/irccat/default.nix vendored Normal file
View file

@ -0,0 +1,16 @@
# https://github.com/irccloud/irccat
{ lib, pkgs, ... }:
pkgs.buildGoModule rec {
pname = "irccat";
version = "20201108";
meta.license = lib.licenses.gpl3;
vendorSha256 = "06a985y4alw1rsghgmhfyczns6klz7bbkfn5mnqc9fdfclgg4s3r";
src = pkgs.fetchFromGitHub {
owner = "irccloud";
repo = "irccat";
rev = "17451e7e267f099e9614ec945541b624520f607e";
sha256 = "0l99mycxymyslwi8mmyfdcqa8pdp79wcyb04s5j5y4grmlsxw1wx";
};
}