2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchurl, autoreconfHook
|
2015-02-08 20:04:40 +00:00
|
|
|
, mp4v2Support ? true, mp4v2 ? null
|
|
|
|
, drmSupport ? false # Digital Radio Mondiale
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert mp4v2Support -> (mp4v2 != null);
|
2010-07-28 12:55:54 +01:00
|
|
|
|
2015-02-08 21:41:20 +00:00
|
|
|
with stdenv.lib;
|
2011-05-12 21:43:33 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "faac";
|
2020-12-11 04:20:00 +00:00
|
|
|
version = "1.30";
|
2008-10-14 15:01:38 +01:00
|
|
|
|
2010-07-28 12:55:54 +01:00
|
|
|
src = fetchurl {
|
2020-12-11 04:20:00 +00:00
|
|
|
url = "mirror://sourceforge/faac/${pname}-${builtins.replaceStrings ["."] ["_"] version}.tar.gz";
|
|
|
|
sha256 = "1lmj0dib3mjp84jhxc5ddvydkzzhb0gfrdh3ikcidjlcb378ghxd";
|
2008-10-14 15:01:38 +01:00
|
|
|
};
|
|
|
|
|
2015-02-08 21:41:20 +00:00
|
|
|
configureFlags = [ ]
|
2017-02-26 18:09:29 +00:00
|
|
|
++ optional mp4v2Support "--with-external-mp4v2"
|
2015-02-08 21:41:20 +00:00
|
|
|
++ optional drmSupport "--enable-drm";
|
2015-02-08 20:04:40 +00:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-03-04 13:51:07 +00:00
|
|
|
|
2017-02-26 18:09:29 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2015-02-08 21:41:20 +00:00
|
|
|
buildInputs = [ ]
|
|
|
|
++ optional mp4v2Support mp4v2;
|
2008-10-14 15:01:38 +01:00
|
|
|
|
2017-12-07 12:52:32 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-02-08 21:41:20 +00:00
|
|
|
meta = {
|
2010-07-28 12:55:54 +01:00
|
|
|
description = "Open source MPEG-4 and MPEG-2 AAC encoder";
|
2015-02-10 14:32:51 +00:00
|
|
|
license = licenses.unfreeRedistributable;
|
2015-02-08 20:04:40 +00:00
|
|
|
maintainers = with maintainers; [ codyopel ];
|
|
|
|
platforms = platforms.all;
|
2008-10-14 15:01:38 +01:00
|
|
|
};
|
|
|
|
}
|