forked from mirrors/nixpkgs
10 lines
238 B
Nix
10 lines
238 B
Nix
{ 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;
|
|
}
|