mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
19 lines
362 B
Nix
19 lines
362 B
Nix
{ mkDerivation
|
|
, lib
|
|
, extra-cmake-modules
|
|
, kguiaddons
|
|
, kidletime
|
|
, kwayland
|
|
, kwindowsystem
|
|
, qtbase
|
|
, wayland-scanner
|
|
, wayland
|
|
, wayland-protocols
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "layer-shell-qt";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ kguiaddons kidletime kwindowsystem kwayland qtbase wayland-scanner wayland wayland-protocols ];
|
|
}
|