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

18 lines
460 B
Nix
Raw Normal View History

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