buildUboot: add openssl to nativeBuildInputs

required by tools/kwbimage.c, tools/mxsimage.c and in various other
places too.
As those are tools running on the host, it's a nativeBuildInput.

Changed files
+2 -2
pkgs
misc
uboot
+2 -2
pkgs/misc/uboot/default.nix
···
-
{ stdenv, fetchurl, fetchpatch, bc, dtc, python2
, hostPlatform
}:
···
patchShebangs tools
'';
-
nativeBuildInputs = [ bc dtc python2 ];
hardeningDisable = [ "all" ];
···
+
{ stdenv, fetchurl, fetchpatch, bc, dtc, openssl, python2
, hostPlatform
}:
···
patchShebangs tools
'';
+
nativeBuildInputs = [ bc dtc openssl python2 ];
hardeningDisable = [ "all" ];