about summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/ki18n.nix
blob: 68f29c8314f31e79c629e33ac33f2183012f954d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  kdeFramework, lib,
  extra-cmake-modules, gettext, python,
  qtbase, qtdeclarative, qtscript,
}:

kdeFramework {
  name = "ki18n";
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
    broken = builtins.compareVersions qtbase.version "5.6.0" < 0;
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedNativeBuildInputs = [ gettext python ];
  propagatedBuildInputs = [ qtdeclarative qtscript ];
}