11 lines
168 B
Nix
11 lines
168 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qtdeclarative,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "kcmutils";
|
||
|
|
||
|
extraPropagatedBuildInputs = [ qtdeclarative ];
|
||
|
meta.mainProgram = "kcmshell6";
|
||
|
}
|