about summary refs log tree commit diff
path: root/nixos/modules/system/boot/loader/generic-extlinux-compatible
diff options
context:
space:
mode:
authorChristian Kampka <christian@kampka.net>2019-05-31 23:27:35 +0200
committerChristian Kampka <christian@kampka.net>2019-05-31 23:27:49 +0200
commitfd15f37b37f4c371ce8723129db3d5fbe11454a7 (patch)
treec04d83885ff2f5766ce8ea4b7426516d7bd4c074 /nixos/modules/system/boot/loader/generic-extlinux-compatible
parent92c881b6db40dc97551618f35b6d3eae150eafad (diff)
downloadnixlib-fd15f37b37f4c371ce8723129db3d5fbe11454a7.tar
nixlib-fd15f37b37f4c371ce8723129db3d5fbe11454a7.tar.gz
nixlib-fd15f37b37f4c371ce8723129db3d5fbe11454a7.tar.bz2
nixlib-fd15f37b37f4c371ce8723129db3d5fbe11454a7.tar.lz
nixlib-fd15f37b37f4c371ce8723129db3d5fbe11454a7.tar.xz
nixlib-fd15f37b37f4c371ce8723129db3d5fbe11454a7.tar.zst
nixlib-fd15f37b37f4c371ce8723129db3d5fbe11454a7.zip
Revert "extlinux-conf: fix cross compilation"
This reverts commit f17dd04f12a6eccdf613968efca38cfd0edfd2c0.
Diffstat (limited to 'nixos/modules/system/boot/loader/generic-extlinux-compatible')
-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 9ac6b6b12242..576a07c1d272 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.buildPackages.coreutils pkgs.buildPackages.gnused pkgs.buildPackages.gnugrep];
-  inherit (pkgs.buildPackages) bash;
+  path = [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
+  inherit (pkgs) bash;
 }