about summary refs log tree commit diff
path: root/ops/besadii/default.nix
blob: 91d6bba6ac5256c97fe2c7af76de27dd91e8b538 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# This program is used as a git post-update hook to trigger builds on
# sourcehut.
{ ciBuilds, depot, ... }:

let
  inherit (builtins) toFile toJSON;
in depot.nix.buildTypedGo.program {
  name = "besadii";
  srcs = [ ./main.go2 ];

  x_defs = {
    "main.TargetList" = toFile "ci-targets.json" (toJSON ciBuilds.__evaluatable);
  };
}