nixpkgs/pkgs/development/libraries/chromaprint/default.nix
Emery Hemingway d41b8b3091 chromaprint: switch FFT implementation to ffmpeg, build fpcalc
FFmpeg is prefered over FFTW3, and a mutual dependency of picard and acoustid-fingerprinter
2014-08-27 13:38:10 +02:00

26 lines
688 B
Nix

{ stdenv, fetchurl, cmake, ffmpeg, boost }:
stdenv.mkDerivation rec {
name = "chromaprint-${version}";
version = "1.1";
src = fetchurl {
url = "http://bitbucket.org/acoustid/chromaprint/downloads/${name}.tar.gz";
sha256 = "04nd8xmy4kgnpfffj6hw893f80bwhp43i01zpmrinn3497mdf53b";
};
buildInputs = [ cmake ffmpeg boost ];
cmakeFlags = [ "-DBUILD_EXAMPLES=ON" ];
postInstall = "installBin examples/fpcalc";
meta = with stdenv.lib; {
homepage = "http://acoustid.org/chromaprint";
description = "AcoustID audio fingerprinting library";
maintainers = with maintainers; [ emery ];
license = licenses.lgpl21Plus;
platforms = platforms.all;
};
}