aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libechonest
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2014-11-17 01:16:08 +0100
committeraszlig <aszlig@redmoonstudios.org>2014-11-17 01:18:10 +0100
commitaafc04ef351aa305e3d4ecc73779f2d8fce58385 (patch)
tree171670445d02ca03124e8374d46ae07822dbf62a /pkgs/development/libraries/libechonest
parentb2557476f75f408eac2a1c9d02ad07ea94c7d59e (diff)
libechonest: Add new package, version 2.3.0.
Required as a dependency of the Tomahawk music player. Tests are disabled because they require networking support. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/development/libraries/libechonest')
-rw-r--r--pkgs/development/libraries/libechonest/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libechonest/default.nix b/pkgs/development/libraries/libechonest/default.nix
new file mode 100644
index 000000000000..42a3c5f243b4
--- /dev/null
+++ b/pkgs/development/libraries/libechonest/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, cmake, qt4, qjson, doxygen, boost }:
+
+stdenv.mkDerivation rec {
+ name = "libechonest-${version}";
+ version = "2.3.0";
+
+ src = fetchurl {
+ url = "http://files.lfranchi.com/${name}.tar.bz2";
+ sha1 = "cf1b279c96f15c87c36fdeb23b569a60cdfb01db";
+ };
+
+ buildInputs = [ cmake qt4 qjson doxygen boost ];
+ enableParallelBuilding = true;
+
+ meta = {
+ description = "A C++/Qt wrapper around the Echo Nest API";
+ homepage = "http://projects.kde.org/projects/playground/libs/libechonest";
+ license = stdenv.lib.licenses.gpl2Plus;
+ };
+}