about summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kconfig.nix
blob: f6d38cd233631db129588a8cc928259769b693fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ kdeFramework, lib, extra-cmake-modules, qtbase, qttools }:

kdeFramework {
  name = "kconfig";
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
    broken = builtins.compareVersions qtbase.version "5.6.0" < 0;
  };
  nativeBuildInputs = [ extra-cmake-modules qttools ];
  buildInputs = [ qtbase ];
}