9769952933
This reverts commit 112d4c71b2
.
This upgrade causes a serious Plasma performance degradation and causes
incorrect font rendering. Reverting until the cause is known.
17 lines
348 B
Nix
17 lines
348 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, makeQtWrapper
|
|
, qtx11extras
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kdbusaddons";
|
|
nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
|
|
propagatedBuildInputs = [ qtx11extras ];
|
|
postInstall = ''
|
|
wrapQtProgram "$out/bin/kquitapp5"
|
|
'';
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|