mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
18 lines
368 B
Nix
18 lines
368 B
Nix
{ mkDerivation
|
|
, lib
|
|
, extra-cmake-modules
|
|
, kguiaddons
|
|
, kidletime
|
|
, kwayland
|
|
, kwindowsystem
|
|
, qtbase
|
|
, wayland-protocols
|
|
, wayland-scanner
|
|
, wayland
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kwayland-integration";
|
|
nativeBuildInputs = [ extra-cmake-modules wayland-scanner ];
|
|
buildInputs = [ kguiaddons kidletime kwindowsystem kwayland qtbase wayland-protocols wayland ];
|
|
}
|