mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
13 lines
366 B
Nix
13 lines
366 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 ];
|
|
}
|