nixpkgs-suyu/pkgs/desktops/kde-5/frameworks-5.21/ki18n.nix

18 lines
333 B
Nix
Raw Normal View History

2016-04-21 17:32:21 +02:00
{ kdeFramework, lib
, extra-cmake-modules
, gettext
, python
, qtdeclarative
, qtscript
}:
kdeFramework {
name = "ki18n";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qtdeclarative qtscript ];
propagatedNativeBuildInputs = [ gettext python ];
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}