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

18 lines
446 B
Nix
Raw Normal View History

2017-02-28 14:41:58 +01:00
{
mkDerivation, lib, propagateBin,
2017-02-28 14:41:58 +01:00
extra-cmake-modules,
2019-08-11 20:36:09 +02:00
qtbase, wayland, wayland-protocols
2016-07-10 11:36:14 +02:00
}:
mkDerivation {
2016-07-10 11:36:14 +02:00
name = "kwayland";
2017-02-28 14:41:58 +01:00
meta = {
maintainers = [ lib.maintainers.ttuegel ];
broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
2017-02-28 14:41:58 +01:00
};
nativeBuildInputs = [ extra-cmake-modules ];
2019-08-11 20:36:09 +02:00
buildInputs = [ wayland wayland-protocols ];
propagatedBuildInputs = [ qtbase ];
setupHook = propagateBin; # XDG_CONFIG_DIRS
2016-07-10 11:36:14 +02:00
}