about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/jami/client-qt.nix
blob: 0c952fd1ecad2ef65db9149533d4b7745c8c31ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{ version
, src
, jami-meta
, mkDerivation
, lib
, pkg-config
, cmake
, networkmanager # for libnm
, python3
, qttools # for translations
, wrapQtAppsHook
, libnotify
, qrencode
, qtwebengine
, qtdeclarative
, qtquickcontrols2
, qtmultimedia
, qtsvg
, qtwebchannel
, qtgraphicaleffects # no gui without this
, jami-libclient
}:

mkDerivation {
  pname = "jami-client-qt";
  inherit version src;

  sourceRoot = "source/client-qt";

  preConfigure = ''
    python gen-resources.py
    echo 'const char VERSION_STRING[] = "${version}";' > src/version.h
  '';

  nativeBuildInputs = [
    pkg-config
    cmake
    python3
    qttools
  ];

  buildInputs = [
    jami-libclient
    networkmanager
    libnotify
    qrencode
    qtwebengine
    qtdeclarative
    qtquickcontrols2
    qtmultimedia
    qtsvg
    qtwebchannel
    qtgraphicaleffects
  ];

  meta = jami-meta // {
    description = "The client based on QT" + jami-meta.description;
  };
}