about summary refs log tree commit diff
path: root/users/wpcarro/tools/run/default.nix
blob: 807a75c284501f6a2bd9d360ade3b31f8e853975 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs, depot, ... }:

depot.nix.buildGo.program {
  name = "run";
  srcs = [
    ./main.go
  ];
  deps = with depot.users.wpcarro.gopkgs; [
    utils
  ];
}