summary refs log tree commit diff
path: root/pkgs/development/libraries/chromaprint/default.nix
blob: 2c712c5c20ed7c795b11777420a2c5b03c96ae34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
  };
}