vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / system / boot / loader / raspberrypi / raspberrypi-builder.nix
blob64e106036abd159b55e5088da4ff19410cb6acd6
1 { pkgs, configTxt, firmware ? pkgs.raspberrypifw }:
3 pkgs.substituteAll {
4   src = ./raspberrypi-builder.sh;
5   isExecutable = true;
6   inherit (pkgs) bash;
7   path = [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
8   inherit firmware configTxt;