2015-04-07 08:53:16 +00:00
|
|
|
{ stdenv, fetchurl, cmake, boost, ffmpeg }:
|
2013-08-14 16:34:46 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "chromaprint";
|
2019-10-07 17:59:09 +00:00
|
|
|
version = "1.4.3";
|
2013-08-14 16:34:46 +00: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";
|
|
|
|
sha256 = "10kz8lncal4s2rp2rqpgc6xyjp0jzcrihgkx7chf127vfs5n067a";
|
2013-08-14 16:34:46 +00:00
|
|
|
};
|
|
|
|
|
2015-04-07 08:53:16 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2013-08-14 16:34:46 +00:00
|
|
|
|
2015-04-07 08:53:16 +00:00
|
|
|
buildInputs = [ boost ffmpeg ];
|
2014-08-23 21:53:27 +00:00
|
|
|
|
2019-10-07 17:59:09 +00:00
|
|
|
cmakeFlags = [ "-DBUILD_EXAMPLES=ON" "-DBUILD_TOOLS=ON" ];
|
2014-08-23 21:53:27 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-02 21:50:51 +00:00
|
|
|
homepage = https://acoustid.org/chromaprint;
|
2013-08-14 16:34:46 +00:00
|
|
|
description = "AcoustID audio fingerprinting library";
|
2015-12-05 21:41:25 +00:00
|
|
|
maintainers = with maintainers; [ ehmry ];
|
2014-08-23 21:53:27 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
2017-09-12 11:25:12 +00:00
|
|
|
platforms = platforms.linux;
|
2013-08-14 16:34:46 +00:00
|
|
|
};
|
|
|
|
}
|