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

26 lines
672 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}";
version = "1.3.2";
src = fetchurl {
url = "http://bitbucket.org/acoustid/chromaprint/downloads/${name}.tar.gz";
sha256 = "0lln8dh33gslb9cbmd1hcv33pr6jxdwipd8m8gbsyhksiq6r1by3";
};
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 = https://acoustid.org/chromaprint;
description = "AcoustID audio fingerprinting library";
maintainers = with maintainers; [ ehmry ];
license = licenses.lgpl21Plus;
platforms = platforms.linux;
};
}