1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-26 11:06:44 +03:00

Revert "treewide: use buildPackages for config builders"

This reverts commit 35af6e3605.
This commit is contained in:
Christian Kampka 2019-05-31 21:51:29 +02:00
parent fd15f37b37
commit 0d570e020e
8 changed files with 13 additions and 12 deletions

View file

@ -7,8 +7,8 @@ let
initScriptBuilder = pkgs.substituteAll {
src = ./init-script-builder.sh;
isExecutable = true;
inherit (pkgs.buildPackages) bash;
path = with pkgs.buildPackages; [coreutils gnused gnugrep];
inherit (pkgs) bash;
path = [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
};
in