2015-02-08 23:12:58 +01:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, exampleSupport ? true # Example encoding program
|
|
|
|
}:
|
2014-01-02 22:11:02 +01:00
|
|
|
|
2015-02-08 23:12:58 +01:00
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
2014-01-02 22:11:02 +01:00
|
|
|
name = "fdk-aac-${version}";
|
2015-02-08 23:12:58 +01:00
|
|
|
version = "0.1.3";
|
2014-01-02 22:11:02 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-02-08 23:12:58 +01:00
|
|
|
url = "mirror://sourceforge/opencore-amr/fdk-aac/${name}.tar.gz";
|
2014-01-02 22:11:02 +01:00
|
|
|
sha256 = "138c1l6c571289czihk0vlcfbla7qlac2jd5yyps5dyg08l8gjx9";
|
|
|
|
};
|
|
|
|
|
2015-02-08 23:12:58 +01:00
|
|
|
configureFlags = [ ]
|
|
|
|
++ optional exampleSupport "--enable-example";
|
|
|
|
|
|
|
|
meta = {
|
2014-01-02 22:11:02 +01:00
|
|
|
description = "A high-quality implementation of the AAC codec from Android";
|
2015-02-08 23:12:58 +01:00
|
|
|
homepage = http://sourceforge.net/projects/opencore-amr/;
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ codyopel ];
|
|
|
|
platforms = platforms.all;
|
2014-01-02 22:11:02 +01:00
|
|
|
};
|
|
|
|
}
|