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

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

23 lines
549 B
Nix
Raw Normal View History

{ mkDerivation
, extra-cmake-modules
, kguiaddons
, kidletime
, kwayland
, kwindowsystem
, qtbase
, wayland-protocols
, wayland-scanner
, wayland
}:
2016-04-21 16:01:22 +00:00
mkDerivation {
2022-03-06 21:28:56 +00:00
pname = "kwayland-integration";
nativeBuildInputs = [ extra-cmake-modules wayland-scanner ];
buildInputs = [ kguiaddons kidletime kwindowsystem kwayland qtbase wayland-protocols wayland ];
meta = {
description = "Integration plugins for various KDE frameworks for the Wayland windowing system";
homepage = "https://invent.kde.org/plasma/kwayland-integration";
};
2016-04-21 16:01:22 +00:00
}