1{ lib, pkgs }: 2 3pkgs.replaceVarsWith { 4 src = ./extlinux-conf-builder.sh; 5 isExecutable = true; 6 replacements = { 7 path = lib.makeBinPath [ 8 pkgs.coreutils 9 pkgs.gnused 10 pkgs.gnugrep 11 ]; 12 inherit (pkgs) bash; 13 }; 14}