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