raspberry-pi-nix/generic-extlinux-compatible/extlinux-conf-builder.nix
2024-11-21 14:10:07 +01:00

8 lines
168 B
Nix

{ pkgs }:
pkgs.substituteAll {
src = ./extlinux-conf-builder.sh;
isExecutable = true;
path = [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
inherit (pkgs) bash;
}