mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
armTrustedFirmwareTools: include dtc and gcc in nativeBuildInputs to fix darwin build
This commit is contained in:
@@ -2,6 +2,8 @@
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
dtc,
|
||||
gcc,
|
||||
openssl,
|
||||
pkgsCross,
|
||||
buildPackages,
|
||||
@@ -61,6 +63,10 @@ let
|
||||
nativeBuildInputs = [
|
||||
pkgsCross.arm-embedded.stdenv.cc # For Cortex-M0 firmware in RK3399
|
||||
openssl # For fiptool
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
dtc
|
||||
gcc
|
||||
];
|
||||
|
||||
# Make the new toolchain guessing (from 2.14+) happy
|
||||
|
||||
Reference in New Issue
Block a user