libjreen: Add new package, version 1.2.0.

Required as an optional dependency of the Tomahawk music player.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2014-11-17 01:37:13 +01:00
parent 2856b0e66c
commit a28ba461e7
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl, cmake, qt4, pkgconfig, gsasl }:
stdenv.mkDerivation rec {
name = "libjreen-${version}";
version = "1.2.0";
src = fetchurl {
url = "https://qutim.org/dwnl/73/${name}.tar.bz2";
sha256 = "14nwwk40xx8w6x7yaysgcr0lgzhs7l064f7ikp32s5y9a8mmp582";
};
buildInputs = [ cmake qt4 pkgconfig gsasl ];
enableParallelBuilding = true;
meta = {
description = "C++ Jabber library using Qt framework";
homepage = "https://qutim.org/jreen/";
license = stdenv.lib.licenses.gpl2Plus;
};
}

View File

@ -5925,6 +5925,8 @@ let
libtool = libtool_1_5;
};
libjreen = callPackage ../development/libraries/libjreen { };
libjson_rpc_cpp = callPackage ../development/libraries/libjson-rpc-cpp { };
libkate = callPackage ../development/libraries/libkate { };