forked from mirrors/nixpkgs
1afff7c10b
Raspberry Pi Zero
11 lines
231 B
Nix
11 lines
231 B
Nix
{ 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;
|
|
}
|