python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / chromaprint / default.nix
blob5b8cc369ee31cb5cedeb64b487b6ca6cbc748f5f
1 { lib, stdenv, fetchurl, cmake, boost, ffmpeg_4, darwin, zlib }:
3 stdenv.mkDerivation rec {
4   pname = "chromaprint";
5   version = "1.5.1";
7   src = fetchurl {
8     url = "https://github.com/acoustid/chromaprint/releases/download/v${version}/${pname}-${version}.tar.gz";
9     sha256 = "sha256-oarY+juLGLeNN1Wzdn+v+au2ckLgG0eOyaZOGQ8zXhw=";
10   };
12   nativeBuildInputs = [ cmake ];
14   buildInputs = [ boost ffmpeg_4 ] ++ lib.optionals stdenv.isDarwin
15     (with darwin.apple_sdk.frameworks; [Accelerate CoreGraphics CoreVideo zlib]);
17   cmakeFlags = [ "-DBUILD_EXAMPLES=ON" "-DBUILD_TOOLS=ON" ];
19   meta = with lib; {
20     homepage = "https://acoustid.org/chromaprint";
21     description = "AcoustID audio fingerprinting library";
22     maintainers = with maintainers; [ ehmry ];
23     license = licenses.lgpl21Plus;
24     platforms = platforms.unix;
25   };