5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
13 lines
224 B
Nix
13 lines
224 B
Nix
{
|
|
mkKdeDerivation,
|
|
qttools,
|
|
qtdeclarative,
|
|
qtwayland,
|
|
pkg-config,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kwindowsystem";
|
|
|
|
extraNativeBuildInputs = [qttools pkg-config];
|
|
extraBuildInputs = [qtdeclarative qtwayland];
|
|
}
|