about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/speexdsp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/speexdsp/default.nix')
-rw-r--r--nixpkgs/pkgs/development/libraries/speexdsp/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/speexdsp/default.nix b/nixpkgs/pkgs/development/libraries/speexdsp/default.nix
new file mode 100644
index 000000000000..f87d79ca6e48
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/speexdsp/default.nix
@@ -0,0 +1,29 @@
+{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, fftw }:
+
+stdenv.mkDerivation rec {
+  name = "speexdsp-1.2.0";
+
+  src = fetchurl {
+    url = "http://downloads.us.xiph.org/releases/speex/${name}.tar.gz";
+    sha256 = "0wa7sqpk3x61zz99m7lwkgr6yv62ml6lfgs5xja65vlvdzy44838";
+  };
+
+  patches = [ ./build-fix.patch ];
+  postPatch = "sed '3i#include <stdint.h>' -i ./include/speex/speexdsp_config_types.h.in";
+
+  outputs = [ "out" "dev" "doc" ];
+
+  nativeBuildInputs = [ autoreconfHook pkg-config ];
+  buildInputs = [ fftw ];
+
+  configureFlags = [
+    "--with-fft=gpl-fftw3"
+  ] ++ lib.optional stdenv.isAarch64 "--disable-neon";
+
+  meta = with lib; {
+    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;
+  };
+}