16 lines
223 B
Nix
16 lines
223 B
Nix
{ kdeFramework
|
|
, extra-cmake-modules
|
|
, qtbase, wayland
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kwayland";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [ qtbase ];
|
|
propagatedBuildInputs = [
|
|
wayland
|
|
];
|
|
}
|