fdk-aac: refactor and add example optional
This commit is contained in:
parent
f02ccf6acd
commit
51e995f006
@ -1,19 +1,25 @@
|
|||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchurl
|
||||||
|
, exampleSupport ? true # Example encoding program
|
||||||
|
}:
|
||||||
|
|
||||||
let version = "0.1.3";
|
with stdenv.lib;
|
||||||
in
|
stdenv.mkDerivation rec {
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "fdk-aac-${version}";
|
name = "fdk-aac-${version}";
|
||||||
|
version = "0.1.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/opencore-amr/fdk-aac/fdk-aac-${version}.tar.gz";
|
url = "mirror://sourceforge/opencore-amr/fdk-aac/${name}.tar.gz";
|
||||||
sha256 = "138c1l6c571289czihk0vlcfbla7qlac2jd5yyps5dyg08l8gjx9";
|
sha256 = "138c1l6c571289czihk0vlcfbla7qlac2jd5yyps5dyg08l8gjx9";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
configureFlags = [ ]
|
||||||
|
++ optional exampleSupport "--enable-example";
|
||||||
|
|
||||||
|
meta = {
|
||||||
description = "A high-quality implementation of the AAC codec from Android";
|
description = "A high-quality implementation of the AAC codec from Android";
|
||||||
homepage = "http://sourceforge.net/projects/opencore-amr/";
|
homepage = http://sourceforge.net/projects/opencore-amr/;
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
platforms = platforms.linux;
|
maintainers = with maintainers; [ codyopel ];
|
||||||
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user