tvl-depot/ops/sync-gcsr/default.nix
2020-02-21 13:54:53 +00:00

14 lines
254 B
Nix

{ depot, ... }:
depot.nix.buildGo.program {
name = "sync-gcsr";
srcs = [ ./main.go ];
deps = with depot.third_party; map (p: p.gopkg) [
gopkgs."gopkg.in".src-d.go-git
];
x_defs = {
"main.BuildManifest" = "${./manifest.yaml}";
};
}