Merge pull request #6239 from codyopel/faac
faac: refactor and add drm optional
This commit is contained in:
commit
2a0ad62c56
1 changed files with 19 additions and 8 deletions
|
@ -1,20 +1,31 @@
|
||||||
{ stdenv, fetchurl, mp4v2 }:
|
{ stdenv, fetchurl
|
||||||
|
, mp4v2Support ? true, mp4v2 ? null
|
||||||
|
, drmSupport ? false # Digital Radio Mondiale
|
||||||
|
}:
|
||||||
|
|
||||||
|
assert mp4v2Support -> (mp4v2 != null);
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "faac-1.28";
|
name = "faac-${version}";
|
||||||
|
version = "1.28";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/faac/${name}.tar.gz";
|
url = "mirror://sourceforge/faac/${name}.tar.gz";
|
||||||
sha256 = "1pqr7nf6p2r283n0yby2czd3iy159gz8rfinkis7vcfgyjci2565";
|
sha256 = "1pqr7nf6p2r283n0yby2czd3iy159gz8rfinkis7vcfgyjci2565";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ mp4v2 ];
|
configureFlags = []
|
||||||
|
++ stdenv.lib.optional mp4v2Support "--with-mp4v2"
|
||||||
|
++ stdenv.lib.optional drmSupport "--enable-drm";
|
||||||
|
|
||||||
meta = {
|
buildInputs = []
|
||||||
|
++ stdenv.lib.optional mp4v2Support mp4v2;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "Open source MPEG-4 and MPEG-2 AAC encoder";
|
description = "Open source MPEG-4 and MPEG-2 AAC encoder";
|
||||||
homepage = http://www.audiocoding.com/faac.html;
|
homepage = http://www.audiocoding.com/faac.html;
|
||||||
# Incompatible with GPL. Some changes to the base code, included in faac,
|
license = stdenv.lib.licenses.unfree;
|
||||||
# are under LGPL though.
|
maintainers = with maintainers; [ codyopel ];
|
||||||
license = stdenv.lib.licenses.unfreeRedistributable;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue