python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / fdk-aac / default.nix
bloba94c204c2f786f6eac2f6249cae4d454fa2b9f00
1 { lib
2 , stdenv
3 , fetchurl
4 , exampleSupport ? false # Example encoding program
5 }:
7 stdenv.mkDerivation rec {
8   pname = "fdk-aac";
9   version = "2.0.2";
11   src = fetchurl {
12     url = "mirror://sourceforge/opencore-amr/fdk-aac/${pname}-${version}.tar.gz";
13     sha256 = "sha256-yehjDPnUM/POrXSQahUg0iI/ibzT+pJUhhAXRAuOsi8=";
14   };
16   configureFlags = lib.optional exampleSupport "--enable-example";
18   meta = with lib; {
19     description = "A high-quality implementation of the AAC codec from Android";
20     homepage = "https://sourceforge.net/projects/opencore-amr/";
21     license = licenses.asl20;
22     maintainers = with maintainers; [ codyopel ];
23     platforms = platforms.all;
24   };