1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-24 02:46:38 +00:00
nixpkgs/pkgs/development/libraries/kde-frameworks/kwayland.nix
2017-02-27 11:49:46 -06:00

16 lines
223 B
Nix

{ kdeFramework
, extra-cmake-modules
, qtbase, wayland
}:
kdeFramework {
name = "kwayland";
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [ qtbase ];
propagatedBuildInputs = [
wayland
];
}