2020-09-16 00:13:43 -07:00
|
|
|
{ lib, stdenv, fetchurl, cmake, boost, ffmpeg, darwin, zlib }:
|
2013-08-14 09:34:46 -07:00
|
|
|
|
2020-09-16 00:13:43 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "chromaprint";
|
2020-04-15 10:10:43 -07:00
|
|
|
version = "1.5.0";
|
2013-08-14 09:34:46 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-10-07 10:59:09 -07:00
|
|
|
url = "https://github.com/acoustid/chromaprint/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2020-04-15 10:10:43 -07:00
|
|
|
sha256 = "0sknmyl5254rc55bvkhfwpl4dfvz45xglk1rq8zq5crmwq058fjp";
|
2013-08-14 09:34:46 -07:00
|
|
|
};
|
|
|
|
|
2015-04-07 01:53:16 -07:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2013-08-14 09:34:46 -07:00
|
|
|
|
2020-09-16 00:13:43 -07:00
|
|
|
buildInputs = [ boost ffmpeg ] ++ lib.optionals stdenv.isDarwin
|
|
|
|
(with darwin.apple_sdk.frameworks; [Accelerate CoreGraphics CoreVideo zlib]);
|
2014-08-23 14:53:27 -07:00
|
|
|
|
2019-10-07 10:59:09 -07:00
|
|
|
cmakeFlags = [ "-DBUILD_EXAMPLES=ON" "-DBUILD_TOOLS=ON" ];
|
2014-08-23 14:53:27 -07:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://acoustid.org/chromaprint";
|
2013-08-14 09:34:46 -07:00
|
|
|
description = "AcoustID audio fingerprinting library";
|
2015-12-05 13:41:25 -08:00
|
|
|
maintainers = with maintainers; [ ehmry ];
|
2014-08-23 14:53:27 -07:00
|
|
|
license = licenses.lgpl21Plus;
|
2020-09-15 10:14:36 -07:00
|
|
|
platforms = platforms.unix;
|
2013-08-14 09:34:46 -07:00
|
|
|
};
|
|
|
|
}
|