mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
ee727e253e
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.
10 lines
138 B
Nix
10 lines
138 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
python3,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "ki18n";
|
|
|
|
extraBuildInputs = [qtdeclarative python3];
|
|
}
|