mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 12:44:20 +00:00
8 lines
241 B
Nix
8 lines
241 B
Nix
{ mkDerivation , extra-cmake-modules , kidletime , kwayland , kwindowsystem }:
|
|
|
|
mkDerivation {
|
|
name = "kwayland-integration";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [ kidletime kwindowsystem kwayland ];
|
|
}
|