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
511 B
Nix
15 lines
511 B
Nix
{ kdeFramework, lib, copyPathsToStore
|
|
, extra-cmake-modules, makeQtWrapper
|
|
, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kiconthemes";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
|
|
propagatedBuildInputs = [ breeze-icons kconfigwidgets ki18n kitemviews qtsvg ];
|
|
postInstall = ''
|
|
wrapQtProgram "$out/bin/kiconfinder5"
|
|
'';
|
|
}
|