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


                                       
                       


             
                       


         
{ depot, ... }:

let
  inherit (depot.users.wpcarro) gopkgs;
in depot.nix.buildGo.program {
  name = "symlink-mgr";
  srcs = [
    ./main.go
  ];
  deps = with gopkgs; [
    utils
  ];
}