9 lines
168 B
Nix
9 lines
168 B
Nix
![]() |
{ pkgs }:
|
||
|
|
||
|
pkgs.substituteAll {
|
||
|
src = ./extlinux-conf-builder.sh;
|
||
|
isExecutable = true;
|
||
|
inherit (pkgs) bash;
|
||
|
path = [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
|
||
|
}
|