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

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