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