about summary refs log blame commit diff
path: root/tools/symlinkManager/default.nix
blob: 6500991babb9ba6275d0b672330cdf696cdf2254 (plain) (tree)
1
2
3
4
5
6
7
8
 





                                    
                       






                                 
{
  depot ? import <depot> {},
  briefcase ? import <briefcase> {},
  ...
}:

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