afc364f194
This reverts commit 6454d8725b21fbd8c85acdda4cc1de4e8eb9c1a7.
13 lines
329 B
Nix
13 lines
329 B
Nix
{ kdeFramework, lib, extra-cmake-modules, kconfigwidgets, ki18n
|
|
, kitemviews, qtsvg
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kiconthemes";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ kconfigwidgets kitemviews qtsvg ];
|
|
propagatedBuildInputs = [ ki18n ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|