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

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