2017-10-04 11:54:47 +01:00
|
|
|
{ stdenv, fetchurl, unzip }:
|
2009-10-04 22:31:34 +01:00
|
|
|
|
2017-10-04 11:54:47 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "amrwb-${version}";
|
|
|
|
version = "11.0.0.0";
|
2009-10-04 22:31:34 +01:00
|
|
|
|
|
|
|
srcAmr = fetchurl {
|
2017-10-04 11:54:47 +01:00
|
|
|
url = http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-b00.zip;
|
|
|
|
sha256 = "1v4zhs6f1mf1xkrzhljh05890in0rpr5d5pcak9h4igxhd2c91f8";
|
2009-10-04 22:31:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
2017-10-04 11:54:47 +01:00
|
|
|
url = "http://www.penguin.cz/~utx/ftp/amr/amrwb-${version}.tar.bz2";
|
|
|
|
sha256 = "1p6m9nd08mv525w14py9qzs9zwsa5i3vxf5bgcmcvc408jqmkbsw";
|
2009-10-04 22:31:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
|
|
|
|
configureFlags = [ "--cache-file=config.cache" "--with-downloader=true" ];
|
|
|
|
|
|
|
|
postConfigure = ''
|
2017-10-04 11:54:47 +01:00
|
|
|
cp $srcAmr 26204-b00.zip
|
2009-10-04 22:31:34 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.penguin.cz/~utx/amr;
|
|
|
|
description = "AMR Wide-Band Codec";
|
|
|
|
# The wrapper code is free, but not the libraries from 3gpp.
|
|
|
|
# It's a source code reference implementation with patents and licenses on
|
|
|
|
# some countries, not redistributable.
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.unfree;
|
2009-10-04 22:31:34 +01:00
|
|
|
};
|
|
|
|
}
|