mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-17 23:19:25 +03:00
nixos/raspberrypi-builder: fix cross using buildPackages
This commit is contained in:
parent
03ae0c0fe2
commit
a6ac6d00f9
1 changed files with 2 additions and 2 deletions
|
@ -3,8 +3,8 @@
|
||||||
pkgs.substituteAll {
|
pkgs.substituteAll {
|
||||||
src = ./raspberrypi-builder.sh;
|
src = ./raspberrypi-builder.sh;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
inherit (pkgs) bash;
|
inherit (pkgs.buildPackages) bash;
|
||||||
path = [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
|
path = with pkgs.buildPackages; [coreutils gnused gnugrep];
|
||||||
firmware = pkgs.raspberrypifw;
|
firmware = pkgs.raspberrypifw;
|
||||||
inherit configTxt;
|
inherit configTxt;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue