From f65cc9b1d696b0f670ad50fcb4935f5b9b266d6b Mon Sep 17 00:00:00 2001 From: Alessio Caiazza Date: Tue, 20 May 2025 18:47:58 +0200 Subject: [PATCH] fix(flakeModule): ensure we have a compatible bash on macOS --- lib/flakeModule.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/flakeModule.nix b/lib/flakeModule.nix index 8bafe41..69251ed 100644 --- a/lib/flakeModule.nix +++ b/lib/flakeModule.nix @@ -16,7 +16,7 @@ cc = null; preHook = ""; allowedRequisites = null; - initialPath = [pkgs.coreutils pkgs.findutils]; + initialPath = [pkgs.coreutils pkgs.findutils] ++ lib.optional pkgs.stdenv.isDarwin pkgs.bash; extraNativeBuildInputs = []; };