python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / telepathy / qt / default.nix
blob37a71fb25363fefaef8d226f9fd6f9d810f29e97
1 { lib
2 , stdenv
3 , fetchurl
4 , cmake
5 , qtbase
6 , pkg-config
7 , python3Packages
8 , dbus-glib
9 , dbus
10 , telepathy-farstream
11 , telepathy-glib
14 let
15   inherit (python3Packages) python dbus-python;
17 stdenv.mkDerivation rec {
18   pname = "telepathy-qt";
19   version = "0.9.8";
21   src = fetchurl {
22     url = "https://telepathy.freedesktop.org/releases/telepathy-qt/telepathy-qt-${version}.tar.gz";
23     sha256 = "bf8e2a09060addb80475a4938105b9b41d9e6837999b7a00e5351783857e18ad";
24   };
26   nativeBuildInputs = [ cmake pkg-config python ];
27   propagatedBuildInputs = [ qtbase telepathy-farstream telepathy-glib ];
28   buildInputs = [ dbus-glib ];
29   checkInputs = [ dbus.daemon dbus-python ];
31   # No point in building tests if they are not run
32   # On 0.9.7, they do not even build with QT4
33   cmakeFlags = lib.optional (!doCheck) "-DENABLE_TESTS=OFF";
35   dontWrapQtApps = true;
37   doCheck = false; # giving up for now
39   meta = with lib; {
40     description = "Telepathy Qt bindings";
41     homepage = "https://telepathy.freedesktop.org/components/telepathy-qt/";
42     license = licenses.lgpl21;
43     platforms = platforms.linux;
44   };