mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-17 23:19:25 +03:00
10 lines
248 B
Nix
10 lines
248 B
Nix
{ pkgs, version, configTxt }:
|
|
|
|
pkgs.substituteAll {
|
|
src = ./raspberrypi-builder.sh;
|
|
isExecutable = true;
|
|
inherit (pkgs) bash;
|
|
path = [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
|
|
firmware = pkgs.raspberrypifw;
|
|
inherit version configTxt;
|
|
}
|