e91d5e4e61
The ciBuilds attribute seems to no longer exist and it breaks the evaluation of the config attribute. It's only appearance was in besadii which doesn't actually use the attribute. Removing the ciBuilds inherit fixes these issues. Change-Id: Ibbf3413ba6efe10ad868cf57cf0711d574860f97 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2487 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
10 lines
260 B
Nix
10 lines
260 B
Nix
# 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 ];
|
|
}
|