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

16 lines
223 B
Nix
Raw Normal View History

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