speexdsp: add mingw support

Part of a larger effort to add mingw support for qtmultimedia
This commit is contained in:
Sean Link 2024-02-08 11:41:53 -07:00
parent 005f312ae9
commit 6a38f054ec

View File

@ -4,7 +4,7 @@
, autoreconfHook , autoreconfHook
, pkg-config , pkg-config
, fftw , fftw
, withFftw3 ? true , withFftw3 ? (!stdenv.hostPlatform.isMinGW)
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -31,6 +31,6 @@ stdenv.mkDerivation rec {
homepage = "https://www.speex.org/"; homepage = "https://www.speex.org/";
description = "An Open Source/Free Software patent-free audio compression format designed for speech"; description = "An Open Source/Free Software patent-free audio compression format designed for speech";
license = licenses.bsd3; license = licenses.bsd3;
platforms = platforms.unix; platforms = platforms.unix ++ platforms.windows;
}; };
} }