mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 21:25:30 +03:00
nixos/limine: substituteAll -> replaceVarsWith
This commit is contained in:
parent
fab95ba4b9
commit
e51e0da386
1 changed files with 5 additions and 4 deletions
|
@ -358,14 +358,15 @@ 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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue