mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
15 lines
155 B
Nix
15 lines
155 B
Nix
{ kdeFramework
|
|
, ecm
|
|
, wayland
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kwayland";
|
|
nativeBuildInputs = [
|
|
ecm
|
|
];
|
|
propagatedBuildInputs = [
|
|
wayland
|
|
];
|
|
}
|