try to fix a nixpkgs assert

This commit is contained in:
Wolfgang Thaller 2023-12-26 23:50:25 +01:00
parent 3193ad031c
commit de58f40581
1 changed files with 4 additions and 1 deletions

View File

@ -251,7 +251,10 @@ pkgs: prevPkgs: {
# binutils -- binutils with the wrappers provided by nixpkgs
binutils = if (prevPkgs.targetPlatform ? retro68) then
pkgs.wrapBintoolsWith { bintools = pkgs.retro68.binutils_unwrapped; }
pkgs.wrapBintoolsWith {
bintools = pkgs.retro68.binutils_unwrapped;
libc = null;
}
else
prevPkgs.binutils;