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