2020-07-01 17:51:27 +01:00
|
|
|
{ stdenv, fetchurl, cmake, qtbase, pkgconfig, python3Packages, dbus-glib, dbus
|
2018-02-25 02:23:58 +00:00
|
|
|
, telepathy-farstream, telepathy-glib, fetchpatch }:
|
2012-03-13 19:07:09 +00:00
|
|
|
|
2016-08-16 21:51:21 +01:00
|
|
|
let
|
2020-07-01 17:51:27 +01:00
|
|
|
inherit (python3Packages) python dbus-python;
|
2016-08-16 21:51:21 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
2020-07-01 17:51:27 +01:00
|
|
|
name = "telepathy-qt-0.9.8";
|
2008-01-23 16:34:33 +00:00
|
|
|
|
2009-02-20 16:18:56 +00:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://telepathy.freedesktop.org/releases/telepathy-qt/${name}.tar.gz";
|
2020-07-01 17:51:27 +01:00
|
|
|
sha256 = "bf8e2a09060addb80475a4938105b9b41d9e6837999b7a00e5351783857e18ad";
|
2009-02-20 16:18:56 +00:00
|
|
|
};
|
2016-03-02 16:40:08 +00:00
|
|
|
|
2015-12-18 09:51:27 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig python ];
|
2018-02-25 02:23:58 +00:00
|
|
|
propagatedBuildInputs = [ qtbase telepathy-farstream telepathy-glib ];
|
|
|
|
buildInputs = [ dbus-glib ];
|
2018-07-17 21:11:16 +01:00
|
|
|
checkInputs = [ dbus.daemon dbus-python ];
|
2017-12-13 00:03:13 +00:00
|
|
|
|
|
|
|
# No point in building tests if they are not run
|
|
|
|
# On 0.9.7, they do not even build with QT4
|
|
|
|
cmakeFlags = stdenv.lib.optional (!doCheck) "-DENABLE_TESTS=OFF";
|
2014-06-19 22:02:18 +01:00
|
|
|
|
2016-01-15 17:01:28 +00:00
|
|
|
enableParallelBuilding = true;
|
2014-06-19 22:02:18 +01:00
|
|
|
doCheck = false; # giving up for now
|
2014-10-03 14:27:13 +01:00
|
|
|
|
2017-12-13 00:03:13 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Telepathy Qt bindings";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://telepathy.freedesktop.org/components/telepathy-qt/";
|
2017-12-13 00:03:13 +00:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.linux;
|
2014-10-03 14:27:13 +01:00
|
|
|
};
|
2008-01-23 16:34:33 +00:00
|
|
|
}
|