lib.systems: s/makeMuslParsedPlatform/mkMuslSystem/ (#497385)

This commit is contained in:
Philip Taron
2026-03-07 00:50:27 +00:00
committed by GitHub
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -977,7 +977,7 @@ rec {
# This is a function from parsed platforms (like stdenv.hostPlatform.parsed)
# to parsed platforms.
makeMuslParsedPlatform =
mkMuslSystem =
parsed:
# The following line guarantees that the output of this function
# is a well-formed platform with no missing fields.
+1 -1
View File
@@ -288,7 +288,7 @@ let
isStatic = true;
config = lib.systems.parse.tripleFromSystem (
if stdenv.hostPlatform.isLinux then
lib.systems.parse.makeMuslParsedPlatform stdenv.hostPlatform.parsed
lib.systems.parse.mkMuslSystem stdenv.hostPlatform.parsed
else
stdenv.hostPlatform.parsed
);
+1 -1
View File
@@ -84,7 +84,7 @@ self: super: {
++ overlays;
${if stdenv.hostPlatform == stdenv.buildPlatform then "localSystem" else "crossSystem"} = {
config = lib.systems.parse.tripleFromSystem (
lib.systems.parse.makeMuslParsedPlatform stdenv.hostPlatform.parsed
lib.systems.parse.mkMuslSystem stdenv.hostPlatform.parsed
);
};
}