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

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