2015-02-08 22:12:58 +00:00
|
|
|
{ stdenv, fetchurl
|
2015-02-09 20:18:20 +00:00
|
|
|
, exampleSupport ? false # Example encoding program
|
2015-02-08 22:12:58 +00:00
|
|
|
}:
|
2014-01-02 21:11:02 +00:00
|
|
|
|
2015-02-08 22:12:58 +00:00
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
2014-01-02 21:11:02 +00:00
|
|
|
name = "fdk-aac-${version}";
|
2017-01-24 22:49:34 +00:00
|
|
|
version = "0.1.5";
|
2014-01-02 21:11:02 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-02-08 22:12:58 +00:00
|
|
|
url = "mirror://sourceforge/opencore-amr/fdk-aac/${name}.tar.gz";
|
2017-01-24 22:49:34 +00:00
|
|
|
sha256 = "1msdkcf559agmpycd4bk0scm2s2h9jyzbnnw1yrfarxlcwm5jr11";
|
2014-01-02 21:11:02 +00:00
|
|
|
};
|
|
|
|
|
2015-02-08 22:12:58 +00:00
|
|
|
configureFlags = [ ]
|
|
|
|
++ optional exampleSupport "--enable-example";
|
|
|
|
|
|
|
|
meta = {
|
2014-01-02 21:11:02 +00:00
|
|
|
description = "A high-quality implementation of the AAC codec from Android";
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://sourceforge.net/projects/opencore-amr/;
|
2015-02-08 22:12:58 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ codyopel ];
|
|
|
|
platforms = platforms.all;
|
2014-01-02 21:11:02 +00:00
|
|
|
};
|
|
|
|
}
|