about summary refs log tree commit diff
path: root/fun/amsterdump/default.nix
blob: d64b3a98dc6de26d8a1fccc59defb20059d8ac04 (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; [
    # gopkgs."golang.org".x.oauth2.google
    gopkgs."googlemaps.github.io".maps
  ];
}