1{ stdenv, fetchurl, cmake, qt4, qjson, doxygen, boost }:
2
3stdenv.mkDerivation rec {
4 name = "libechonest-${version}";
5 version = "2.3.0";
6
7 src = fetchurl {
8 url = "http://files.lfranchi.com/${name}.tar.bz2";
9 sha1 = "cf1b279c96f15c87c36fdeb23b569a60cdfb01db";
10 };
11
12 buildInputs = [ cmake qt4 qjson doxygen boost ];
13 enableParallelBuilding = true;
14
15 meta = {
16 description = "A C++/Qt wrapper around the Echo Nest API";
17 homepage = "http://projects.kde.org/projects/playground/libs/libechonest";
18 license = stdenv.lib.licenses.gpl2Plus;
19 };
20}