0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

nixos/limine: substituteAll -> replaceVarsWith

(cherry picked from commit e51e0da386)
This commit is contained in:
nat 2025-05-13 23:14:43 +02:00 committed by Masum Reza
parent 90f3e90346
commit 8c8ba680ec

View file

@ -358,12 +358,13 @@ in
system = { system = {
boot.loader.id = "limine"; boot.loader.id = "limine";
build.installBootLoader = pkgs.substituteAll { build.installBootLoader = pkgs.replaceVarsWith {
src = ./limine-install.py; src = ./limine-install.py;
isExecutable = true; isExecutable = true;
replacements = {
python3 = pkgs.python3.withPackages (python-packages: [ python-packages.psutil ]); python3 = pkgs.python3.withPackages (python-packages: [ python-packages.psutil ]);
configPath = limineInstallConfig; configPath = limineInstallConfig;
};
}; };
}; };
}) })