about summary refs log tree commit diff
path: root/ops/sync-gcsr/default.nix
blob: ae88b34124dca0644f6201efdc32c0ec1a216df7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }:

pkgs.buildGo.program {
  name = "sync-gcsr";
  srcs = [ ./main.go ];

  deps = with pkgs.third_party; map (p: p.gopkg) [
    gopkgs."gopkg.in".src-d.go-git
  ];

  x_defs = {
    "main.BuildManifest" = "${./manifest.yaml}";
  };
}