summary refs log tree commit diff
path: root/nixos/modules/system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.nix
blob: c5c250c14cea55587fc6e72bcff0dece1dca1bcd (plain) (blame)
1
2
3
4
5
6
7
8
9
{ pkgs }:

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