summary refs log tree commit diff
path: root/pkgs/development/libraries/chromaprint/default.nix
blob: 40d41b633d26dfb388d36dcd2716e7d95ea455e4 (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 = "1.1";

  src = fetchurl {
    url = "http://bitbucket.org/acoustid/chromaprint/downloads/${name}.tar.gz";
    sha256 = "04nd8xmy4kgnpfffj6hw893f80bwhp43i01zpmrinn3497mdf53b";
  };

  buildInputs = [ cmake fftw boost ];

  meta = {
    homepage = "http://acoustid.org/chromaprint";
    description = "AcoustID audio fingerprinting library";
    license = stdenv.lib.licenses.lgpl21Plus;
  };
}