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