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

let
  gopkgs = depot.third_party.gopkgs;
in
depot.nix.buildGo.program {
  name = "uggc";
  srcs = [
    ./main.go
  ];
  deps = [
    gopkgs."github.com".pkg.browser.gopkg
  ];
}