about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSean Link <sean.link@lightdeckdx.com>2024-02-19 11:50:05 -0700
committerBjørn Forsman <bjorn.forsman@gmail.com>2024-02-19 21:09:34 +0100
commit93e1c2d08467d1117ebac45689469613a9fe8453 (patch)
treea71be29ec9a1d906373bc8e8feac400a1bc378bf
parent4072f686d75d388a7b19a868392f131205bb99d9 (diff)
speex: add mingw support
Part of a larger effort to provide mingw support for qtmultimedia
-rw-r--r--pkgs/development/libraries/speex/default.nix17
1 files changed, 13 insertions, 4 deletions
diff --git a/pkgs/development/libraries/speex/default.nix b/pkgs/development/libraries/speex/default.nix
index cdf5b00abd044..cba0e4e76f3f4 100644
--- a/pkgs/development/libraries/speex/default.nix
+++ b/pkgs/development/libraries/speex/default.nix
@@ -1,4 +1,12 @@
-{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, fftw, speexdsp }:
+{ lib
+, stdenv
+, fetchurl
+, autoreconfHook
+, pkg-config
+, fftw
+, speexdsp
+, withFft ? !stdenv.hostPlatform.isMinGW
+}:
 
 stdenv.mkDerivation rec {
   pname = "speex";
@@ -16,12 +24,13 @@ stdenv.mkDerivation rec {
   outputs = [ "out" "dev" "doc" ];
 
   nativeBuildInputs = [ autoreconfHook pkg-config ];
-  buildInputs = [ fftw speexdsp ];
+  buildInputs = lib.optionals withFft [ fftw ]
+    ++ [ speexdsp ];
 
   # TODO: Remove this will help with immediate backward compatibility
   propagatedBuildInputs = [ speexdsp ];
 
-  configureFlags = [
+  configureFlags = lib.optionals withFft [
     "--with-fft=gpl-fftw3"
   ];
 
@@ -29,6 +38,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;
   };
 }