supercolliderPlugins: fix FFTW3F-INCLUDE-DIR build error

sc3-plugins requires the `fftw3F` (or `fftw3Float`) package, due to its
UGens utilizing the library. Without including `fftw3Float` in the
`buildInput` variable, sc3-plugins will not compile.
This commit is contained in:
Ian Mitchell
2026-06-13 20:00:41 -04:00
parent 4f5042c837
commit cfa8792fac
@@ -6,6 +6,7 @@
cmake,
supercollider,
fftw,
fftwFloat,
gitUpdater,
}:
@@ -25,6 +26,7 @@ stdenv.mkDerivation rec {
buildInputs = [
supercollider
fftw
fftwFloat # builds without this will return an error message about no FFTW3F-INCLUDE-DIR
];
cmakeFlags = [