c05803ff14
gerrit.Watcher is a class which watches the Gerrit stream-events SSH connection and produces events. There's a basic CLBot binary as well, to demonstrate driving it to produce messages on the logging output. It doesn't really do anything else. Change-Id: I274fe0a77c8329f79456425405e2fbdc3ca2edf0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/245 Reviewed-by: tazjin <mail@tazj.in>
11 lines
292 B
Nix
11 lines
292 B
Nix
{ depot, ... }:
|
|
|
|
depot.buildGo.external {
|
|
path = "github.com/golang/glog";
|
|
src = depot.third_party.fetchFromGitHub {
|
|
owner = "golang";
|
|
repo = "glog";
|
|
rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998";
|
|
sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30";
|
|
};
|
|
}
|