39 lines
971 B
Nix
39 lines
971 B
Nix
{ stdenv, fetchurl, autoreconfHook
|
|
, mp4v2Support ? true, mp4v2 ? null
|
|
, drmSupport ? false # Digital Radio Mondiale
|
|
}:
|
|
|
|
assert mp4v2Support -> (mp4v2 != null);
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
pname = "faac";
|
|
version = "1.29.9.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/faac/${pname}-${version}.tar.gz";
|
|
sha256 = "0wf781vp7rzmxkx5h0w8j2i4xc63iixxikgbvvkdljbwhffj0pyl";
|
|
};
|
|
|
|
configureFlags = [ ]
|
|
++ optional mp4v2Support "--with-external-mp4v2"
|
|
++ optional drmSupport "--enable-drm";
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ ]
|
|
++ optional mp4v2Support mp4v2;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Open source MPEG-4 and MPEG-2 AAC encoder";
|
|
homepage = "https://www.audiocoding.com/faac.html";
|
|
license = licenses.unfreeRedistributable;
|
|
maintainers = with maintainers; [ codyopel ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|