2020-02-21 13:47:29 +01:00
|
|
|
{ depot, ... }:
|
2019-12-20 14:16:57 +01:00
|
|
|
|
2020-02-21 13:47:29 +01:00
|
|
|
depot.nix.buildGo.program {
|
2019-12-20 14:16:57 +01:00
|
|
|
name = "sync-gcsr";
|
|
|
|
srcs = [ ./main.go ];
|
|
|
|
|
2020-02-21 13:47:29 +01:00
|
|
|
deps = with depot.third_party; map (p: p.gopkg) [
|
2019-12-20 14:16:57 +01:00
|
|
|
gopkgs."gopkg.in".src-d.go-git
|
|
|
|
];
|
2020-01-18 16:37:05 +01:00
|
|
|
|
|
|
|
x_defs = {
|
|
|
|
"main.BuildManifest" = "${./manifest.yaml}";
|
|
|
|
};
|
2019-12-20 14:16:57 +01:00
|
|
|
}
|