2015-04-07 01:53:16 -07:00
|
|
|
{ stdenv, fetchurl, cmake, boost, ffmpeg }:
|
2013-08-14 09:34:46 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "chromaprint";
|
2019-10-07 10:59:09 -07:00
|
|
|
version = "1.4.3";
|
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";
|
|
|
|
sha256 = "10kz8lncal4s2rp2rqpgc6xyjp0jzcrihgkx7chf127vfs5n067a";
|
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
|
|
|
|
2015-04-07 01:53:16 -07:00
|
|
|
buildInputs = [ boost ffmpeg ];
|
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
|
|
|
|
|
|
|
meta = with stdenv.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;
|
2017-09-12 04:25:12 -07:00
|
|
|
platforms = platforms.linux;
|
2013-08-14 09:34:46 -07:00
|
|
|
};
|
|
|
|
}
|