15 lines
243 B
Nix
15 lines
243 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qttools,
|
||
|
qtdeclarative,
|
||
|
qtwayland,
|
||
|
pkg-config,
|
||
|
wayland,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "kwindowsystem";
|
||
|
|
||
|
extraNativeBuildInputs = [qttools pkg-config];
|
||
|
extraBuildInputs = [qtdeclarative qtwayland wayland];
|
||
|
}
|