about summary refs log tree commit diff
path: root/ops/sync-gcsr/default.nix
blob: ea5d0594a871a28fd420aa5a6689075121d43a47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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}";
  };
}