mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 05:29:20 +03:00
9 lines
238 B
Nix
9 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;
|
|
}
|