about summary refs log tree commit diff
path: root/pkgs/kde
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2024-04-16 07:44:01 +0200
committerVladimír Čunát <v@cunat.cz>2024-04-16 07:44:01 +0200
commitee727e253e0a28e0b9fd913d62055e87a2def432 (patch)
tree4c5f10d2e88e0f93b77b033643047575002b40ef /pkgs/kde
parent097ced11fa37dec3146e0480026c0c10d7d35e6f (diff)
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.
Diffstat (limited to 'pkgs/kde')
-rw-r--r--pkgs/kde/frameworks/ki18n/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/kde/frameworks/ki18n/default.nix b/pkgs/kde/frameworks/ki18n/default.nix
index 2a082a9dfe579..02b03f875ffb4 100644
--- a/pkgs/kde/frameworks/ki18n/default.nix
+++ b/pkgs/kde/frameworks/ki18n/default.nix
@@ -1,9 +1,10 @@
 {
   mkKdeDerivation,
   qtdeclarative,
+  python3,
 }:
 mkKdeDerivation {
   pname = "ki18n";
 
-  extraBuildInputs = [qtdeclarative];
+  extraBuildInputs = [qtdeclarative python3];
 }