pypy3: lib.mapAttrsToList -> lib.attrsNames

This commit is contained in:
h7x4
2025-04-07 13:21:34 +02:00
parent ddb37e12c2
commit 92aa43a0df

View File

@@ -181,7 +181,7 @@ stdenv.mkDerivation {
description = "Fast, compliant alternative implementation of the Python language (${pythonVersion})";
mainProgram = "pypy";
license = licenses.mit;
platforms = lib.mapAttrsToList (arch: _: arch) downloadUrls;
platforms = lib.attrNames downloadUrls;
};
}