2015-04-25 23:04:54 +01:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig, fftw, speexdsp }:
|
2005-11-22 22:32:18 +00:00
|
|
|
|
2010-06-09 13:55:22 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-25 23:04:54 +01:00
|
|
|
name = "speex-1.2rc2";
|
2012-08-25 04:14:45 +01:00
|
|
|
|
2005-11-22 22:32:18 +00:00
|
|
|
src = fetchurl {
|
2010-06-09 13:55:22 +01:00
|
|
|
url = "http://downloads.us.xiph.org/releases/speex/${name}.tar.gz";
|
2015-04-25 23:04:54 +01:00
|
|
|
sha256 = "14g8ph39inkrif749lzjm089g7kwk0hymq1a3i9ch5gz8xr7r8na";
|
2005-11-22 22:32:18 +00:00
|
|
|
};
|
2012-08-25 04:14:45 +01:00
|
|
|
|
2015-04-25 23:04:54 +01:00
|
|
|
postPatch = ''
|
|
|
|
sed -i '/AC_CONFIG_MACRO_DIR/i PKG_PROG_PKG_CONFIG' configure.ac
|
|
|
|
'';
|
2012-08-25 04:14:45 +01:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2012-08-25 04:14:45 +01:00
|
|
|
|
2015-04-25 23:04:54 +01: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; {
|
2017-04-29 05:24:34 +01:00
|
|
|
homepage = http://www.speex.org/;
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "An Open Source/Free Software patent-free audio compression format designed for speech";
|
2015-04-25 23:04:54 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2012-08-25 04:14:45 +01:00
|
|
|
};
|
2005-11-22 22:32:18 +00:00
|
|
|
}
|