about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/qt-5/modules/qtpim.nix
blob: 01692d9f2ec3ff4846054120c6c1d113b7f148a7 (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
{ qtModule
, lib
, qtbase
, qtdeclarative
}:

qtModule {
  pname = "qtpim";

  outputs = [
    "out"
    "dev"
  ];

  propagatedBuildInputs = [
    qtbase
    qtdeclarative
  ];

  qmakeFlags = [
    "CONFIG+=git_build"
  ];

  meta = {
    maintainers = with lib.maintainers; [ OPNA2608 ];
  };
}