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

17 lines
349 B
Nix
Raw Normal View History

2017-02-28 13:41:58 +00:00
{
kdeFramework, lib,
extra-cmake-modules,
qtbase, wayland
2016-07-10 09:36:14 +00:00
}:
kdeFramework {
name = "kwayland";
2017-02-28 13:41:58 +00:00
meta = {
maintainers = [ lib.maintainers.ttuegel ];
broken = builtins.compareVersions qtbase.version "5.6.0" < 0;
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qtbase ];
2017-02-28 13:41:58 +00:00
propagatedBuildInputs = [ wayland ];
2016-07-10 09:36:14 +00:00
}