2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, fftw }:
|
2015-04-25 22:04:27 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-06-20 14:15:21 +00:00
|
|
|
pname = "speexdsp";
|
2022-08-02 03:08:29 +00:00
|
|
|
version = "1.2.1";
|
2015-05-28 09:53:21 +00:00
|
|
|
|
2015-04-25 22:04:27 +00:00
|
|
|
src = fetchurl {
|
2021-06-20 14:15:21 +00:00
|
|
|
url = "https://downloads.xiph.org/releases/speex/${pname}-${version}.tar.gz";
|
2022-08-02 03:08:29 +00:00
|
|
|
sha256 = "sha256-jHdzQ+SmOZVpxyq8OKlbJNtWiCyD29tsZCSl9K61TT0=";
|
2015-04-25 22:04:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./build-fix.patch ];
|
2015-05-28 09:53:21 +00:00
|
|
|
postPatch = "sed '3i#include <stdint.h>' -i ./include/speex/speexdsp_config_types.h.in";
|
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2015-10-06 14:56:11 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2015-04-25 22:04:27 +00:00
|
|
|
buildInputs = [ fftw ];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-fft=gpl-fftw3"
|
2021-01-21 17:00:13 +00:00
|
|
|
] ++ lib.optional stdenv.isAarch64 "--disable-neon";
|
2015-04-25 22:04:27 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.speex.org/";
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "An Open Source/Free Software patent-free audio compression format designed for speech";
|
2015-04-25 22:04:27 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|