7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
13 lines
228 B
Nix
13 lines
228 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
python3,
|
|
gettext,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "ki18n";
|
|
|
|
extraNativeBuildInputs = [ python3 ];
|
|
propagatedNativeBuildInputs = [ gettext ];
|
|
extraBuildInputs = [ qtdeclarative ];
|
|
}
|