2015-04-26 00:04:27 +02:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig, fftw }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "speexdsp-1.2rc3";
|
2015-05-28 11:53:21 +02:00
|
|
|
|
2015-04-26 00:04:27 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://downloads.us.xiph.org/releases/speex/${name}.tar.gz";
|
|
|
|
sha256 = "1wcjyrnwlkayb20zdhp48y260rfyzg925qpjpljd5x9r01h8irja";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./build-fix.patch ];
|
2015-05-28 11:53:21 +02:00
|
|
|
postPatch = "sed '3i#include <stdint.h>' -i ./include/speex/speexdsp_config_types.h.in";
|
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2015-10-06 16:56:11 +02:00
|
|
|
|
2015-04-26 00:04:27 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ fftw ];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-fft=gpl-fftw3"
|
2017-01-27 15:41:56 +01:00
|
|
|
] ++ stdenv.lib.optional stdenv.isAarch64 "--disable-neon";
|
2015-04-26 00:04:27 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-06-27 22:12:57 +02:00
|
|
|
homepage = https://www.speex.org/;
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "An Open Source/Free Software patent-free audio compression format designed for speech";
|
2015-04-26 00:04:27 +02:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
};
|
|
|
|
}
|