summaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/kde-frameworks/kwindowsystem/default.nix
blob: 59e1e948d4b5c4fd9b8837ae6a77fd55fe067b2c (plain)
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
{
  mkDerivation,
  cmake,
  extra-cmake-modules,
  libpthread-stubs,
  libxdmcp,
  qtbase,
  qttools,
  qtx11extras,
}:

mkDerivation {
  pname = "kwindowsystem";
  nativeBuildInputs = [
    cmake
    extra-cmake-modules
  ];
  buildInputs = [
    libpthread-stubs
    libxdmcp
    qttools
    qtx11extras
  ];
  propagatedBuildInputs = [ qtbase ];
  outputs = [
    "out"
    "dev"
  ];
}