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

17 lines
411 B
Nix
Raw Normal View History

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