blob: c3e2310b6a715280638a705286df736317a4a6ac (
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.
{ depot, ... }:
let
inherit (builtins) toFile toJSON;
in depot.nix.buildGo.program {
name = "besadii";
srcs = [ ./main.go ];
}
|