nixpkgs/pkgs/desktops/kde-5/plasma/plasma-integration.nix

18 lines
396 B
Nix
Raw Normal View History

2016-06-06 23:08:33 +02:00
{ plasmaPackage, extra-cmake-modules
2016-07-10 11:33:21 +02:00
, breeze-qt5, kconfig, kconfigwidgets, kiconthemes, kio, kwayland
2016-06-06 23:08:33 +02:00
, libXcursor
}:
# TODO: install Noto Sans and Oxygen Mono fonts with plasma-integration
plasmaPackage {
name = "plasma-integration";
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
2016-07-10 11:33:21 +02:00
breeze-qt5 kconfig kconfigwidgets kiconthemes kio kwayland
2016-06-06 23:08:33 +02:00
libXcursor
];
}