blob: bcf83778b73f59bdaecb7e9b4a67247ce7b6291c (
plain) (
tree)
|
|
# 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.buildGo.program {
name = "besadii";
srcs = [ ./main.go ];
}
|