summary refs log tree commit diff
path: root/pkgs/tools/audio/acoustid-fingerprinter/default.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2013-08-14 18:36:23 +0200
committeraszlig <aszlig@redmoonstudios.org>2013-08-14 20:50:58 +0200
commite8eea6c2c0aad111eb00c6f4aab37a137d80494d (patch)
tree732575af91c2b56121a1b90e2833dd3b94ffb8a0 /pkgs/tools/audio/acoustid-fingerprinter/default.nix
parentd5487fc684200717af7df89823609209683f311d (diff)
downloadnixpkgs-e8eea6c2c0aad111eb00c6f4aab37a137d80494d.tar
nixpkgs-e8eea6c2c0aad111eb00c6f4aab37a137d80494d.tar.gz
nixpkgs-e8eea6c2c0aad111eb00c6f4aab37a137d80494d.tar.bz2
nixpkgs-e8eea6c2c0aad111eb00c6f4aab37a137d80494d.tar.lz
nixpkgs-e8eea6c2c0aad111eb00c6f4aab37a137d80494d.tar.xz
nixpkgs-e8eea6c2c0aad111eb00c6f4aab37a137d80494d.tar.zst
nixpkgs-e8eea6c2c0aad111eb00c6f4aab37a137d80494d.zip
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>
Diffstat (limited to 'pkgs/tools/audio/acoustid-fingerprinter/default.nix')
-rw-r--r--pkgs/tools/audio/acoustid-fingerprinter/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/tools/audio/acoustid-fingerprinter/default.nix b/pkgs/tools/audio/acoustid-fingerprinter/default.nix
new file mode 100644
index 00000000000..f5d4322ec93
--- /dev/null
+++ b/pkgs/tools/audio/acoustid-fingerprinter/default.nix
@@ -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;
+  };
+}