159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
13 lines
222 B
Nix
13 lines
222 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
python3,
|
|
gettext,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "ki18n";
|
|
|
|
extraNativeBuildInputs = [python3];
|
|
propagatedNativeBuildInputs = [gettext];
|
|
extraBuildInputs = [qtdeclarative];
|
|
}
|