brainix/sources/nixpkgs/nixos/modules/system/boot/loader/raspberrypi/raspberrypi-builder.nix
2026-02-13 17:06:24 +09:00

10 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;
}