mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-09 20:16:41 -04:00
20 lines
466 B
Nix
20 lines
466 B
Nix
_:
|
|
|
|
{
|
|
/* Map Nixpkgs CPU values to target machines known to be supported for manylinux* wheels (a.k.a. `uname -m`),
|
|
in nixpkgs found under the attribute `stdenv.targetPlatform.parsed.cpu.name`
|
|
|
|
Example:
|
|
# legacyAliases.powerpc64
|
|
"ppc64"
|
|
*/
|
|
manyLinuxTargetMachines = {
|
|
x86_64 = "x86_64";
|
|
i686 = "i686";
|
|
aarch64 = "aarch64";
|
|
armv7l = "armv7l";
|
|
powerpc64 = "ppc64";
|
|
powerpc64le = "ppc64le";
|
|
s390x = "s390x";
|
|
};
|
|
}
|