From f05e45d7f55117a16e44e478b494e0c1b33959db Mon Sep 17 00:00:00 2001 From: ene Date: Mon, 20 Feb 2023 10:52:35 +0100 Subject: Fix(bootstrap): Record the dependencies --- bootstrap/activate/default.nix | 2 +- bootstrap/install/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap/activate/default.nix b/bootstrap/activate/default.nix index 2c410f09..91df2dc8 100644 --- a/bootstrap/activate/default.nix +++ b/bootstrap/activate/default.nix @@ -4,7 +4,7 @@ shell-library, ... }: let - dependencies = with pkgs; [jq dash]; + dependencies = with pkgs; [jq dash gawk curl]; name = "activate"; script = ./activate.sh; lib = import ../../lib {inherit pkgs shell-library;}; diff --git a/bootstrap/install/default.nix b/bootstrap/install/default.nix index 68580d41..ae9bfad5 100644 --- a/bootstrap/install/default.nix +++ b/bootstrap/install/default.nix @@ -4,7 +4,7 @@ shell-library, ... }: let - dependencies = with pkgs; [jq dash curl grep]; + dependencies = with pkgs; [jq dash curl gawk]; name = "install"; script = ./install.sh; lib = import ../../lib {inherit pkgs shell-library;}; -- cgit 1.4.1