s/makeStaticParsedPlatform/makeMuslParsedPlatform/g

This commit is contained in:
Adam Joseph 2022-03-08 18:10:28 -08:00
parent 3cf831874e
commit 5b63b25d68

View file

@ -212,7 +212,7 @@ let
})] ++ overlays; })] ++ overlays;
${if stdenv.hostPlatform == stdenv.buildPlatform ${if stdenv.hostPlatform == stdenv.buildPlatform
then "localSystem" else "crossSystem"} = { then "localSystem" else "crossSystem"} = {
parsed = makeStaticParsedPlatform stdenv.hostPlatform.parsed; parsed = makeMuslParsedPlatform stdenv.hostPlatform.parsed;
}; };
} else throw "Musl libc only supports Linux systems."; } else throw "Musl libc only supports Linux systems.";
@ -256,7 +256,7 @@ let
} // lib.optionalAttrs stdenv.hostPlatform.isLinux { } // lib.optionalAttrs stdenv.hostPlatform.isLinux {
crossSystem = { crossSystem = {
isStatic = true; isStatic = true;
parsed = makeStaticParsedPlatform stdenv.hostPlatform.parsed; parsed = makeMuslParsedPlatform stdenv.hostPlatform.parsed;
} // lib.optionalAttrs (stdenv.hostPlatform.system == "powerpc64-linux") { } // lib.optionalAttrs (stdenv.hostPlatform.system == "powerpc64-linux") {
gcc.abi = "elfv2"; gcc.abi = "elfv2";
}; };