nixpkgs/pkgs/development/libraries/chromaprint/default.nix

26 lines
669 B
Nix
Raw Normal View History

2015-04-07 08:53:16 +00:00
{ stdenv, fetchurl, cmake, boost, ffmpeg }:
stdenv.mkDerivation rec {
name = "chromaprint-${version}";
2015-04-07 08:53:16 +00:00
version = "1.2";
src = fetchurl {
url = "http://bitbucket.org/acoustid/chromaprint/downloads/${name}.tar.gz";
2015-04-07 08:53:16 +00:00
sha256 = "06h36223r4bwcazp42faqs9w9g49wvspivd3z3309b12ld4qjaw2";
};
2015-04-07 08:53:16 +00:00
nativeBuildInputs = [ cmake ];
2015-04-07 08:53:16 +00:00
buildInputs = [ boost ffmpeg ];
2015-04-07 08:53:16 +00:00
cmakeFlags = [ "-DBUILD_EXAMPLES=ON" ];
meta = with stdenv.lib; {
homepage = "http://acoustid.org/chromaprint";
description = "AcoustID audio fingerprinting library";
maintainers = with maintainers; [ emery ];
license = licenses.lgpl21Plus;
platforms = platforms.all;
};
}