1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-20 04:48:10 +00:00
nixpkgs/pkgs/development/libraries/kde-frameworks/ki18n.nix

16 lines
337 B
Nix
Raw Normal View History

2016-04-21 16:32:21 +01:00
{ kdeFramework, lib
, extra-cmake-modules
2016-04-21 16:32:21 +01:00
, gettext
, python
, qtdeclarative
, qtscript
}:
kdeFramework {
name = "ki18n";
2016-04-28 16:53:44 +01:00
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules ];
2016-04-28 16:53:44 +01:00
propagatedBuildInputs = [ qtdeclarative qtscript ];
2016-04-21 16:32:21 +01:00
propagatedNativeBuildInputs = [ gettext python ];
}