9769952933
This reverts commit 112d4c71b2
.
This upgrade causes a serious Plasma performance degradation and causes
incorrect font rendering. Reverting until the cause is known.
15 lines
337 B
Nix
15 lines
337 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, gettext
|
|
, python
|
|
, qtdeclarative
|
|
, qtscript
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "ki18n";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [ qtdeclarative qtscript ];
|
|
propagatedNativeBuildInputs = [ gettext python ];
|
|
}
|