about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/jami/libclient.nix
blob: b5ea7431b9150a53befb8b16088dc4dea16471a3 (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
{ version
, src
, jami-meta
, stdenv
, lib
, pkg-config
, cmake
, qtbase
, jami-daemon
}:

stdenv.mkDerivation {
  pname = "jami-libclient";
  inherit version src;

  sourceRoot = "source/lrc";

  nativeBuildInputs = [
    cmake
    pkg-config
  ];

  buildInputs = [
    jami-daemon
  ];

  patches = [
    # Fix path to include dir when using split outputs
    ./libclient-include-path.patch
  ];

  propagatedBuildInputs = [
    qtbase
  ];
  outputs = [ "out" "dev" ];

  cmakeFlags = [
    "-DRING_BUILD_DIR=${jami-daemon}/include"
    "-DRING_XML_INTERFACES_DIR=${jami-daemon}/share/dbus-1/interfaces"
  ];

  dontWrapQtApps = true;

  meta = jami-meta // {
    description = "The client library" + jami-meta.description;
    license = lib.licenses.lgpl21Plus;
  };
}