chromaprint: Add new package in version 0.7.

This is the core component of the AcoustID project and is the library
for extracting/querying of audio fingerprints.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2013-08-14 18:34:46 +02:00
parent 213ff4d38c
commit d5487fc684
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ stdenv, fetchurl, cmake, fftw, boost }:
stdenv.mkDerivation rec {
name = "chromaprint-${version}";
version = "0.7";
src = fetchurl {
url = "http://bitbucket.org/acoustid/chromaprint/downloads/${name}.tar.gz";
sha256 = "00amjzrr4230v3014141hg8k379zpba56xsm572ab49w8kyw6ljf";
};
buildInputs = [ cmake fftw boost ];
meta = {
homepage = "http://acoustid.org/chromaprint";
description = "AcoustID audio fingerprinting library";
license = stdenv.lib.licenses.lgpl21Plus;
};
}

View File

@ -3814,6 +3814,8 @@ let
chmlib = callPackage ../development/libraries/chmlib { };
chromaprint = callPackage ../development/libraries/chromaprint { };
cil = callPackage ../development/libraries/cil { };
cilaterm = callPackage ../development/libraries/cil-aterm {