2015-04-25 15:04:54 -07:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig, fftw, speexdsp }:
|
2005-11-22 14:32:18 -08:00
|
|
|
|
2010-06-09 05:55:22 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2018-10-26 16:41:13 -07:00
|
|
|
name = "speex-1.2.0";
|
2012-08-24 20:14:45 -07:00
|
|
|
|
2005-11-22 14:32:18 -08:00
|
|
|
src = fetchurl {
|
2010-06-09 05:55:22 -07:00
|
|
|
url = "http://downloads.us.xiph.org/releases/speex/${name}.tar.gz";
|
2018-10-26 16:41:13 -07:00
|
|
|
sha256 = "150047wnllz4r94whb9r73l5qf0z5z3rlhy98bawfbblmkq8mbpa";
|
2005-11-22 14:32:18 -08:00
|
|
|
};
|
2012-08-24 20:14:45 -07:00
|
|
|
|
2015-04-25 15:04:54 -07:00
|
|
|
postPatch = ''
|
|
|
|
sed -i '/AC_CONFIG_MACRO_DIR/i PKG_PROG_PKG_CONFIG' configure.ac
|
|
|
|
'';
|
2012-08-24 20:14:45 -07:00
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2012-08-24 20:14:45 -07:00
|
|
|
|
2015-04-25 15:04:54 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ fftw speexdsp ];
|
|
|
|
|
|
|
|
# TODO: Remove this will help with immediate backward compatability
|
|
|
|
propagatedBuildInputs = [ speexdsp ];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-fft=gpl-fftw3"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 11:42:46 -08:00
|
|
|
homepage = https://www.speex.org/;
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "An Open Source/Free Software patent-free audio compression format designed for speech";
|
2015-04-25 15:04:54 -07:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.unix;
|
2012-08-24 20:14:45 -07:00
|
|
|
};
|
2005-11-22 14:32:18 -08:00
|
|
|
}
|