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

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