acoustid-fingerprinter: Add new package, v0.6.

This is the commandline tool for interacting with the chromaprint
library and it's needed for Picard version 1.2 (as it no longer has
support for AmpliFIND/PUIDs).

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

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl, cmake, pkgconfig, qt4, taglib, chromaprint, ffmpeg }:
stdenv.mkDerivation rec {
name = "acoustid-fingerprinter-${version}";
version = "0.6";
src = fetchurl {
url = "http://bitbucket.org/acoustid/acoustid-fingerprinter/downloads/"
+ "${name}.tar.gz";
sha256 = "0ckglwy95qgqvl2l6yd8ilwpd6qs7yzmj8g7lnxb50d12115s5n0";
};
buildInputs = [ cmake pkgconfig qt4 taglib chromaprint ffmpeg ];
meta = {
homepage = "http://acoustid.org/fingerprinter";
description = "Audio fingerprinting tool using chromaprint";
license = stdenv.lib.licenses.gpl2Plus;
};
}

View File

@ -386,6 +386,9 @@ let
acct = callPackage ../tools/system/acct { };
acoustidFingerprinter = callPackage
../tools/audio/acoustid-fingerprinter { };
aefs = callPackage ../tools/filesystems/aefs { };
aespipe = callPackage ../tools/security/aespipe { };