931706cdc1
Previously, the value from stdenv.platform.kernelDTB was used. That doesn't work well if both kinds (DTB and non-DTB) of generations exist in the system profile.
9 lines
168 B
Nix
9 lines
168 B
Nix
{ pkgs }:
|
|
|
|
pkgs.substituteAll {
|
|
src = ./extlinux-conf-builder.sh;
|
|
isExecutable = true;
|
|
path = [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
|
|
inherit (pkgs) bash;
|
|
}
|