mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
11 lines
353 B
Nix
11 lines
353 B
Nix
|
{ mkDerivation, lib
|
||
|
, extra-cmake-modules
|
||
|
, kguiaddons, kidletime, kwayland, kwindowsystem, qtbase, wayland-scanner, wayland, wayland-protocols
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
name = "layer-shell-qt";
|
||
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||
|
buildInputs = [ kguiaddons kidletime kwindowsystem kwayland qtbase wayland-scanner wayland wayland-protocols ];
|
||
|
}
|