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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
826 B
Nix
Raw Normal View History

{ mkDerivation
, extra-cmake-modules
, breeze-qt5
, kconfig
, kconfigwidgets
, kiconthemes
, kio
, knotifications
, kwayland
, libXcursor
, qtquickcontrols2
, wayland
, wayland-protocols
, plasma-wayland-protocols
2016-06-06 21:08:33 +00:00
}:
# TODO: install Noto Sans and Oxygen Mono fonts with plasma-integration
mkDerivation {
2022-03-06 21:28:56 +00:00
pname = "plasma-integration";
nativeBuildInputs = [ extra-cmake-modules ];
2016-06-06 21:08:33 +00:00
buildInputs = [
breeze-qt5
kconfig
kconfigwidgets
kiconthemes
kio
knotifications
kwayland
libXcursor
qtquickcontrols2
wayland
wayland-protocols
plasma-wayland-protocols
2016-06-06 21:08:33 +00:00
];
meta = {
description = "A set of plugins responsible for better integration of Qt applications when running on a KDE Plasma workspace";
homepage = "https://invent.kde.org/plasma/plasma-integration";
};
2016-06-06 21:08:33 +00:00
}