nixpkgs/pkgs/development/libraries/speex/default.nix

35 lines
960 B
Nix
Raw Normal View History

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