17 lines
411 B
Nix
Raw Normal View History

2017-02-28 07:46:08 -06:00
{
2018-05-14 17:32:43 +08:00
mkDerivation, lib,
extra-cmake-modules, gettext, python3,
2017-02-28 07:46:08 -06:00
qtbase, qtdeclarative, qtscript,
2016-04-21 10:32:21 -05:00
}:
mkDerivation {
2016-04-21 10:32:21 -05:00
name = "ki18n";
2017-02-28 07:46:08 -06:00
meta = {
maintainers = [ lib.maintainers.ttuegel ];
broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
2017-02-28 07:46:08 -06:00
};
nativeBuildInputs = [ extra-cmake-modules ];
propagatedNativeBuildInputs = [ gettext python3 ];
buildInputs = [ qtdeclarative qtscript ];
2016-04-21 10:32:21 -05:00
}