summaryrefslogtreecommitdiffstats
path: root/nixos/modules
diff options
context:
space:
mode:
authoreburimu <urusan80@gmail.com>2018-12-06 03:42:02 +0300
committereburimu <urusan80@gmail.com>2018-12-06 03:42:02 +0300
commitf17dd04f12a6eccdf613968efca38cfd0edfd2c0 (patch)
treeb235148dc87a546074911273e9befb43cd4783c9 /nixos/modules
parentdc8aca448d0570ade231f92272c4453bc9837fc9 (diff)
extlinux-conf: fix cross compilation
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.nix b/nixos/modules/system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.nix
index 576a07c1d272..9ac6b6b12242 100644
--- a/nixos/modules/system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.nix
+++ b/nixos/modules/system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.nix
@@ -3,6 +3,6 @@
pkgs.substituteAll {
src = ./extlinux-conf-builder.sh;
isExecutable = true;
- path = [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
- inherit (pkgs) bash;
+ path = [pkgs.buildPackages.coreutils pkgs.buildPackages.gnused pkgs.buildPackages.gnugrep];
+ inherit (pkgs.buildPackages) bash;
}