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