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