mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 17:54:53 +01:00
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;
|
|
}
|