diff options
Diffstat (limited to 'users/wpcarro/tools/run')
-rw-r--r-- | users/wpcarro/tools/run/default.nix | 6 | ||||
-rw-r--r-- | users/wpcarro/tools/run/shell.nix | 7 |
2 files changed, 6 insertions, 7 deletions
diff --git a/users/wpcarro/tools/run/default.nix b/users/wpcarro/tools/run/default.nix index 7d772c3f9079..807a75c28450 100644 --- a/users/wpcarro/tools/run/default.nix +++ b/users/wpcarro/tools/run/default.nix @@ -1,11 +1,11 @@ -{ pkgs, depot, briefcase, ... }: +{ pkgs, depot, ... }: -depot.buildGo.program { +depot.nix.buildGo.program { name = "run"; srcs = [ ./main.go ]; - deps = with briefcase.gopkgs; [ + deps = with depot.users.wpcarro.gopkgs; [ utils ]; } diff --git a/users/wpcarro/tools/run/shell.nix b/users/wpcarro/tools/run/shell.nix index e14bffae487c..f777c13fefae 100644 --- a/users/wpcarro/tools/run/shell.nix +++ b/users/wpcarro/tools/run/shell.nix @@ -1,7 +1,6 @@ -let - briefcase = import <briefcase> {}; - pkgs = briefcase.third_party.pkgs; -in pkgs.mkShell { +{ pkgs, ... }: + +pkgs.mkShell { buildInputs = with pkgs; [ go goimports |