nixpkgs/pkgs/development/libraries/faac/default.nix

38 lines
942 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook
2015-02-08 20:04:40 +00:00
, mp4v2Support ? true, mp4v2 ? null
, drmSupport ? false # Digital Radio Mondiale
}:
assert mp4v2Support -> (mp4v2 != null);
with lib;
stdenv.mkDerivation rec {
pname = "faac";
2020-12-11 04:20:00 +00:00
version = "1.30";
src = fetchurl {
2020-12-11 04:20:00 +00:00
url = "mirror://sourceforge/faac/${pname}-${builtins.replaceStrings ["."] ["_"] version}.tar.gz";
sha256 = "1lmj0dib3mjp84jhxc5ddvydkzzhb0gfrdh3ikcidjlcb378ghxd";
};
2015-02-08 21:41:20 +00:00
configureFlags = [ ]
++ 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
hardeningDisable = [ "format" ];
2016-03-04 13:51:07 +00:00
nativeBuildInputs = [ autoreconfHook ];
2015-02-08 21:41:20 +00:00
buildInputs = [ ]
++ optional mp4v2Support mp4v2;
2017-12-07 12:52:32 +00:00
enableParallelBuilding = true;
2015-02-08 21:41:20 +00:00
meta = {
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;
};
}