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