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

kdeFramework {
  name = "ki18n";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ ecm ];
  propagatedBuildInputs = [ qtdeclarative qtscript ];
  propagatedNativeBuildInputs = [ gettext python ];
}