treewide: use buildPackages for config builders

This commit is contained in:
Matthew Bauer
2019-01-02 23:02:50 -06:00
parent 3dee4f2c71
commit 35af6e3605
8 changed files with 12 additions and 13 deletions
@@ -7,8 +7,8 @@ let
initScriptBuilder = pkgs.substituteAll {
src = ./init-script-builder.sh;
isExecutable = true;
inherit (pkgs) bash;
path = [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
inherit (pkgs.buildPackages) bash;
path = with pkgs.buildPackages; [coreutils gnused gnugrep];
};
in