nixpkgs/nixos/modules/system/boot/loader/raspberrypi/raspberrypi-builder.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;
}