fix(flakeModule): ensure we have a compatible bash on macOS

This commit is contained in:
Alessio Caiazza 2025-05-20 18:47:58 +02:00
parent dca2d724c1
commit f65cc9b1d6
No known key found for this signature in database

View file

@ -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 = [];
};