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:
parent
2856b0e66c
commit
a28ba461e7
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -5925,6 +5925,8 @@ let
|
||||||
libtool = libtool_1_5;
|
libtool = libtool_1_5;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
libjreen = callPackage ../development/libraries/libjreen { };
|
||||||
|
|
||||||
libjson_rpc_cpp = callPackage ../development/libraries/libjson-rpc-cpp { };
|
libjson_rpc_cpp = callPackage ../development/libraries/libjson-rpc-cpp { };
|
||||||
|
|
||||||
libkate = callPackage ../development/libraries/libkate { };
|
libkate = callPackage ../development/libraries/libkate { };
|
||||||
|
|
Loading…
Reference in New Issue