depot/ops/nixos/kerrigan/boot-builder.nix

9 lines
198 B
Nix
Raw Normal View History

2023-01-17 19:36:53 +00:00
{ substituteAll, coreutils, gnused, gnugrep, bash, ubootTools }:
substituteAll {
src = ./boot-builder.sh;
isExecutable = true;
path = [coreutils gnused gnugrep ubootTools];
inherit bash;
}