2015-04-07 10:53:16 +02:00
|
|
|
{ stdenv, fetchurl, cmake, boost, ffmpeg }:
|
2013-08-14 18:34:46 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "chromaprint-${version}";
|
2015-04-07 10:53:16 +02:00
|
|
|
version = "1.2";
|
2013-08-14 18:34:46 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://bitbucket.org/acoustid/chromaprint/downloads/${name}.tar.gz";
|
2015-04-07 10:53:16 +02:00
|
|
|
sha256 = "06h36223r4bwcazp42faqs9w9g49wvspivd3z3309b12ld4qjaw2";
|
2013-08-14 18:34:46 +02:00
|
|
|
};
|
|
|
|
|
2015-04-07 10:53:16 +02:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2013-08-14 18:34:46 +02:00
|
|
|
|
2015-04-07 10:53:16 +02:00
|
|
|
buildInputs = [ boost ffmpeg ];
|
2014-08-23 23:53:27 +02:00
|
|
|
|
2015-04-07 10:53:16 +02:00
|
|
|
cmakeFlags = [ "-DBUILD_EXAMPLES=ON" ];
|
2014-08-23 23:53:27 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2013-08-14 18:34:46 +02:00
|
|
|
homepage = "http://acoustid.org/chromaprint";
|
|
|
|
description = "AcoustID audio fingerprinting library";
|
2015-12-05 22:41:25 +01:00
|
|
|
maintainers = with maintainers; [ ehmry ];
|
2014-08-23 23:53:27 +02:00
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
platforms = platforms.all;
|
2013-08-14 18:34:46 +02:00
|
|
|
};
|
|
|
|
}
|