18 lines
373 B
Nix
18 lines
373 B
Nix
|
{ plasmaPackage, extra-cmake-modules
|
||
|
, kconfig, kconfigwidgets, kiconthemes, kio, kwayland
|
||
|
, libXcursor
|
||
|
}:
|
||
|
|
||
|
# TODO: install Noto Sans and Oxygen Mono fonts with plasma-integration
|
||
|
|
||
|
plasmaPackage {
|
||
|
name = "plasma-integration";
|
||
|
nativeBuildInputs = [
|
||
|
extra-cmake-modules
|
||
|
];
|
||
|
buildInputs = [
|
||
|
kconfig kconfigwidgets kiconthemes kio kwayland
|
||
|
libXcursor
|
||
|
];
|
||
|
}
|