20 lines
284 B
Nix
Executable File
20 lines
284 B
Nix
Executable File
{
|
|
pkgs,
|
|
configTxt,
|
|
firmware ? pkgs.raspberrypifw,
|
|
}:
|
|
|
|
pkgs.replaceVarsWith {
|
|
src = ./firmware-builder.sh;
|
|
isExecutable = true;
|
|
|
|
replacements = {
|
|
inherit (pkgs) bash;
|
|
path = pkgs.lib.makeBinPath [
|
|
pkgs.coreutils
|
|
];
|
|
|
|
inherit firmware configTxt;
|
|
};
|
|
}
|