nixpkgs/pkgs/development/libraries/kde-frameworks/ki18n.nix

17 lines
411 B
Nix
Raw Normal View History

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