Merge pull request #287287 from seanybaggins/add-mingw32-support-speexdsp

speexdsp: add mingw support
This commit is contained in:
Artturi
2024-02-09 22:42:35 +02:00
committed by GitHub
@@ -4,7 +4,7 @@
, autoreconfHook
, pkg-config
, fftw
, withFftw3 ? true
, withFftw3 ? (!stdenv.hostPlatform.isMinGW)
}:
stdenv.mkDerivation rec {
@@ -31,6 +31,6 @@ stdenv.mkDerivation rec {
homepage = "https://www.speex.org/";
description = "An Open Source/Free Software patent-free audio compression format designed for speech";
license = licenses.bsd3;
platforms = platforms.unix;
platforms = platforms.unix ++ platforms.windows;
};
}