blob: 48856fce0651b9d221cc7a042cfa0a8292f920c6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# This program is used as a Gerrit hook to trigger builds on
# Buildkite, Sourcegraph reindexing and other maintenance tasks.
{ ciBuilds, depot, ... }:
let
inherit (builtins) toFile toJSON;
in depot.nix.buildTypedGo.program {
name = "besadii";
srcs = [ ./main.go2 ];
}
|