diff --git a/pkgs/build-support/lib/meson.nix b/pkgs/build-support/lib/meson.nix index 76f458cdd9c83..e6ae12392eecb 100644 --- a/pkgs/build-support/lib/meson.nix +++ b/pkgs/build-support/lib/meson.nix @@ -11,6 +11,10 @@ let "arm" else if isx86_32 then "x86" + else if isPower64 then + "ppc64" + else if isPower then + "ppc" else platform.uname.processor;