about summary refs log tree commit diff
path: root/fun/amsterdump/default.nix
blob: 0d98c9a7ab93c030f1cb7813c2bdd75a79ed98dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ depot, ... }:

depot.nix.buildGo.program {
  name = "amsterdump";
  srcs = [
    ./main.go
  ];

  deps = with depot.third_party; map (p: p.gopkg) [
    # gopkgs."golang.org".x.oauth2.google
    gopkgs."googlemaps.github.io".maps
  ];
}