summaryrefslogtreecommitdiff
path: root/pkgs/kde/frameworks/kwindowsystem/default.nix
blob: 5ae167b1cc9ad6538525885ab0f57bd07e31b76e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  mkKdeDerivation,
  qttools,
  qtdeclarative,
  qtwayland,
  pkg-config,
}:
mkKdeDerivation {
  pname = "kwindowsystem";

  extraNativeBuildInputs = [
    qttools
    pkg-config
  ];
  extraBuildInputs = [
    qtdeclarative
    qtwayland
  ];
}