We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6a31099 + 94847c9 commit f8f1811Copy full SHA for f8f1811
pkgs/development/libraries/fftw/default.nix
@@ -85,5 +85,7 @@ stdenv.mkDerivation (finalAttrs: {
85
}.${precision}
86
];
87
platforms = platforms.unix;
88
+ # quad-precision requires libquadmath from gfortran, but libquadmath is not supported on aarch64
89
+ badPlatforms = lib.optionals (precision == "quad-precision") platforms.aarch64;
90
};
91
})
0 commit comments