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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
278 B
Nix
Raw Normal View History

2017-02-28 14:46:08 +01:00
{
mkDerivation,
extra-cmake-modules, gettext, python3,
2017-02-28 14:46:08 +01:00
qtbase, qtdeclarative, qtscript,
2016-04-21 17:32:21 +02:00
}:
mkDerivation {
2022-02-23 18:28:27 +01:00
pname = "ki18n";
nativeBuildInputs = [ extra-cmake-modules ];
propagatedNativeBuildInputs = [ gettext python3 ];
buildInputs = [ qtdeclarative qtscript ];
2016-04-21 17:32:21 +02:00
}