summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kwindowsystem/default.nix
blob: 7643572a7ec02d562ed8225285f9d595116ef125 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  mkDerivation,
  extra-cmake-modules,
  libpthreadstubs, libXdmcp,
  qtbase, qttools, qtx11extras
}:

mkDerivation {
  name = "kwindowsystem";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ libpthreadstubs libXdmcp qttools qtx11extras ];
  propagatedBuildInputs = [ qtbase ];
  outputs = [ "out" "dev" ];
}