1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-03-06 23:31:34 +00:00
nixpkgs/pkgs/development/libraries/kde-frameworks/kwayland.nix

15 lines
187 B
Nix
Raw Normal View History

2016-07-10 10:36:14 +01:00
{ kdeFramework
, extra-cmake-modules
, wayland
}:
kdeFramework {
name = "kwayland";
nativeBuildInputs = [
extra-cmake-modules
];
propagatedBuildInputs = [
wayland
];
}