diff options
Diffstat (limited to 'users/wpcarro/tools/symlinkManager/default.nix')
-rw-r--r-- | users/wpcarro/tools/symlinkManager/default.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/users/wpcarro/tools/symlinkManager/default.nix b/users/wpcarro/tools/symlinkManager/default.nix index 16bb26bb3c2e..4e261d730932 100644 --- a/users/wpcarro/tools/symlinkManager/default.nix +++ b/users/wpcarro/tools/symlinkManager/default.nix @@ -1,11 +1,13 @@ -{ depot, briefcase, ... }: +{ depot, ... }: -depot.buildGo.program { +let + inherit (depot.users.wpcarro) gopkgs; +in depot.nix.buildGo.program { name = "symlink-mgr"; srcs = [ ./main.go ]; - deps = with briefcase.gopkgs; [ + deps = with gopkgs; [ utils ]; } |