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