summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/ki18n.nix
blob: 46f502d06bb4d23039b086526eefde59ea564d57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{
  mkDerivation,
  extra-cmake-modules, gettext, python3,
  qtbase, qtdeclarative, qtscript,
}:

mkDerivation {
  name = "ki18n";
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedNativeBuildInputs = [ gettext python3 ];
  buildInputs = [ qtdeclarative qtscript ];
}