mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
15 lines
189 B
Nix
15 lines
189 B
Nix
{ plasmaPackage
|
|
, extra-cmake-modules
|
|
, wayland
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "kwayland";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
propagatedBuildInputs = [
|
|
wayland
|
|
];
|
|
}
|