diff options
Diffstat (limited to 'tools/run')
-rw-r--r-- | tools/run/default.nix | 7 | ||||
-rw-r--r-- | tools/run/shell.nix | 2 |
2 files changed, 2 insertions, 7 deletions
diff --git a/tools/run/default.nix b/tools/run/default.nix index 113491536ee5..7d772c3f9079 100644 --- a/tools/run/default.nix +++ b/tools/run/default.nix @@ -1,9 +1,4 @@ -{ - pkgs ? import <nixpkgs> {}, - depot ? import <depot> {}, - briefcase ? import <briefcase> {}, - ... -}: +{ pkgs, depot, briefcase, ... }: depot.buildGo.program { name = "run"; diff --git a/tools/run/shell.nix b/tools/run/shell.nix index 8b97f04ca446..de192ae150c7 100644 --- a/tools/run/shell.nix +++ b/tools/run/shell.nix @@ -1,4 +1,4 @@ -{ pkgs ? import <nixpkgs> {}, ... }: +{ pkgs, ... }: pkgs.mkShell { buildInputs = with pkgs; [ |