tvl-depot/ops/besadii/default.nix
Vincent Ambo 80c6680eda feat(ops/besadii): Refactored tool to trigger sourcehut builds
Refactors //ops/sync-gcsr which was previously responsible for
synchronising the git repository between GCSR and the git.tazj.in cgit
instance to simply be responsible for triggering builds on sourcehut.

This program is intended to run as a git post-update hook.

Note: Not yet feature complete, as interpolation of concrete git
values and also sourcehut secrets is missing.
2020-02-21 22:05:43 +00:00

8 lines
170 B
Nix

# This program is used as a git post-update hook to trigger builds on
# sourcehut.
{ depot, ... }:
depot.buildGo.program {
name = "besadii";
srcs = [ ./main.go ];
}