about summary refs log tree commit diff
path: root/nixos/modules/system/boot
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2023-07-21 01:44:33 +0300
committerGitHub <noreply@github.com>2023-07-21 01:44:33 +0300
commitdbef093f844de41af10631860243a8c9a7fc6031 (patch)
tree97c01b0b3f89d0359b112431b1b530b9d8955a49 /nixos/modules/system/boot
parent447f02c1c8749a835fd50f63d451684b5fe9ac88 (diff)
parent69267c22f169133a4c16a91212f109974740d17a (diff)
Merge pull request #244449 from Artturin/fixsrip1
Diffstat (limited to 'nixos/modules/system/boot')
-rw-r--r--nixos/modules/system/boot/stage-1.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix
index 08a10cb5edf87..7aaa3f85bfe0e 100644
--- a/nixos/modules/system/boot/stage-1.nix
+++ b/nixos/modules/system/boot/stage-1.nix
@@ -91,7 +91,7 @@ let
   # we just copy what we need from Glibc and use patchelf to make it
   # work.
   extraUtils = pkgs.runCommand "extra-utils"
-    { nativeBuildInputs = [pkgs.buildPackages.nukeReferences];
+    { nativeBuildInputs = with pkgs.buildPackages; [ nukeReferences bintools ];
       allowedReferences = [ "out" ]; # prevent accidents like glibc being included in the initrd
     }
     ''