c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
13 lines
222 B
Nix
13 lines
222 B
Nix
{ 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
|
|
];
|
|
}
|