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

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