1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-24 02:00:41 +03:00

treewide: use buildPackages for config builders

This commit is contained in:
Matthew Bauer 2018-12-28 13:41:51 -06:00
parent 3dee4f2c71
commit 35af6e3605
8 changed files with 12 additions and 13 deletions

View file

@ -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