2018-09-11 04:21:41 +01:00
|
|
|
{ pkgs, configTxt }:
|
2018-09-04 21:52:29 +01:00
|
|
|
|
|
|
|
pkgs.substituteAll {
|
|
|
|
src = ./raspberrypi-builder.sh;
|
|
|
|
isExecutable = true;
|
2020-05-09 09:22:08 +01:00
|
|
|
inherit (pkgs.buildPackages) bash;
|
|
|
|
path = with pkgs.buildPackages; [coreutils gnused gnugrep];
|
2018-09-04 21:52:29 +01:00
|
|
|
firmware = pkgs.raspberrypifw;
|
2018-09-11 04:21:41 +01:00
|
|
|
inherit configTxt;
|
2018-09-04 21:52:29 +01:00
|
|
|
}
|