nixpkgs/pkgs/kde/frameworks/ki18n/default.nix
Vladimír Čunát ee727e253e
kdePackages.ki18n: fixup build, missing python3
https://hydra.nixos.org/build/256386319/nixlog/2/tail

I don't know what's changed to cause this regression,
but adding python3 like this shouldn't make things worse.
2024-04-16 07:44:01 +02:00

11 lines
138 B
Nix

{
mkKdeDerivation,
qtdeclarative,
python3,
}:
mkKdeDerivation {
pname = "ki18n";
extraBuildInputs = [qtdeclarative python3];
}