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

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