aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/modules/system/boot/loader/raspberrypi/raspberrypi-builder.nix
blob: 7eb52e3d021ff231d9ca342a7a0d18690ea3adff (plain)
1
2
3
4
5
6
7
8
9
10
{ pkgs, configTxt }:

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