about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/faac/default.nix
blob: 42f1f8db59bb02f28da83b79737d06f6935b078b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib, stdenv, fetchurl, autoreconfHook
, mp4v2Support ? true, mp4v2 ? null
, drmSupport ? false # Digital Radio Mondiale
}:

assert mp4v2Support -> (mp4v2 != null);

stdenv.mkDerivation rec {
  pname = "faac";
  version = "1.30";

  src = fetchurl {
    url = "mirror://sourceforge/faac/${pname}-${builtins.replaceStrings ["."] ["_"] version}.tar.gz";
    sha256 = "1lmj0dib3mjp84jhxc5ddvydkzzhb0gfrdh3ikcidjlcb378ghxd";
  };

  configureFlags = [ ]
    ++ lib.optional mp4v2Support "--with-external-mp4v2"
    ++ lib.optional drmSupport "--enable-drm";

  hardeningDisable = [ "format" ];

  nativeBuildInputs = [ autoreconfHook ];

  buildInputs = [ ]
    ++ lib.optional mp4v2Support mp4v2;

  enableParallelBuilding = true;

  meta = with lib; {
    description = "Open source MPEG-4 and MPEG-2 AAC encoder";
    license     = licenses.unfreeRedistributable;
    maintainers = with maintainers; [ codyopel ];
    platforms   = platforms.all;
  };
}