9 lines
198 B
Nix
9 lines
198 B
Nix
|
{ substituteAll, coreutils, gnused, gnugrep, bash, ubootTools }:
|
||
|
|
||
|
substituteAll {
|
||
|
src = ./boot-builder.sh;
|
||
|
isExecutable = true;
|
||
|
path = [coreutils gnused gnugrep ubootTools];
|
||
|
inherit bash;
|
||
|
}
|