Merge pull request #244449 from Artturin/fixsrip1

authored by

Artturi and committed by
GitHub
dbef093f 447f02c1

+1 -1
+1 -1
nixos/modules/system/boot/stage-1.nix
··· 91 # we just copy what we need from Glibc and use patchelf to make it 92 # work. 93 extraUtils = pkgs.runCommand "extra-utils" 94 - { nativeBuildInputs = [pkgs.buildPackages.nukeReferences]; 95 allowedReferences = [ "out" ]; # prevent accidents like glibc being included in the initrd 96 } 97 ''
··· 91 # we just copy what we need from Glibc and use patchelf to make it 92 # work. 93 extraUtils = pkgs.runCommand "extra-utils" 94 + { nativeBuildInputs = with pkgs.buildPackages; [ nukeReferences bintools ]; 95 allowedReferences = [ "out" ]; # prevent accidents like glibc being included in the initrd 96 } 97 ''