nixpkgs/pkgs/development/libraries/kde-frameworks/kwayland.nix

16 lines
223 B
Nix
Raw Normal View History

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