summary refs log tree commit diff
path: root/nixos/modules/system/boot/loader/raspberrypi/raspberrypi-builder.nix
blob: 64e106036abd159b55e5088da4ff19410cb6acd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ pkgs, configTxt, firmware ? pkgs.raspberrypifw }:

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