nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

efibootmgr: fixup build on i686

Same as efivar; I believe it doesn't really needs LTO. I checked:
nix build -f nixos/release-combined.nix nixos.iso_minimal.i686-linux

(cherry picked from commit f5956774188194c8f5b5acbfe4392f91ece6a593)
/cc ZHF: #80379

+2
+2
pkgs/tools/system/efibootmgr/default.nix
··· 22 22 sha256 = "1sbijvlpv4khkix3vix9mbhzffj8lp8zpnbxm9gnzjz8yssz9p5h"; 23 23 }) 24 24 ]; 25 + # We have no LTO here since commit 22284b07. 26 + postPatch = if stdenv.isi686 then "sed '/^CFLAGS/s/-flto//' -i Make.defaults" else null; 25 27 26 28 makeFlags = [ "EFIDIR=nixos" ]; 27 29