9405df4a82
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
13 lines
363 B
Nix
13 lines
363 B
Nix
{
|
|
mkDerivation, propagateBin,
|
|
extra-cmake-modules,
|
|
plasma-wayland-protocols, qtbase, wayland, wayland-protocols
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kwayland";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ plasma-wayland-protocols wayland wayland-protocols ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
setupHook = propagateBin; # XDG_CONFIG_DIRS
|
|
}
|