2015-04-07 09:53:16 +01:00
|
|
|
{ stdenv, fetchurl, cmake, boost, ffmpeg }:
|
2013-08-14 17:34:46 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "chromaprint-${version}";
|
2017-03-12 02:45:24 +00:00
|
|
|
version = "1.3.2";
|
2013-08-14 17:34:46 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://bitbucket.org/acoustid/chromaprint/downloads/${name}.tar.gz";
|
2017-03-12 02:45:24 +00:00
|
|
|
sha256 = "0lln8dh33gslb9cbmd1hcv33pr6jxdwipd8m8gbsyhksiq6r1by3";
|
2013-08-14 17:34:46 +01:00
|
|
|
};
|
|
|
|
|
2015-04-07 09:53:16 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2013-08-14 17:34:46 +01:00
|
|
|
|
2015-04-07 09:53:16 +01:00
|
|
|
buildInputs = [ boost ffmpeg ];
|
2014-08-23 22:53:27 +01:00
|
|
|
|
2015-04-07 09:53:16 +01:00
|
|
|
cmakeFlags = [ "-DBUILD_EXAMPLES=ON" ];
|
2014-08-23 22:53:27 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://acoustid.org/chromaprint;
|
2013-08-14 17:34:46 +01:00
|
|
|
description = "AcoustID audio fingerprinting library";
|
2015-12-05 21:41:25 +00:00
|
|
|
maintainers = with maintainers; [ ehmry ];
|
2014-08-23 22:53:27 +01:00
|
|
|
license = licenses.lgpl21Plus;
|
2017-09-12 12:25:12 +01:00
|
|
|
platforms = platforms.linux;
|
2013-08-14 17:34:46 +01:00
|
|
|
};
|
|
|
|
}
|