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:
@@ -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 = [
|
||||
|
||||
Reference in New Issue
Block a user