ubootTools: Fix after update of uboot to 2022.07

This commit is contained in:
Jacek Galowicz 2022-08-21 17:26:40 +02:00
parent 371816f2a5
commit 32aa10f097

View file

@ -1,15 +1,18 @@
{ stdenv
, lib
, fetchurl
, fetchpatch
, fetchFromGitHub
, bc
, bison
, dtc
, fetchFromGitHub
, fetchpatch
, fetchurl
, flex
, gnutls
, libuuid
, meson-tools
, ncurses
, openssl
, swig
, meson-tools
, which
, armTrustedFirmwareAllwinner
, armTrustedFirmwareAllwinnerH616
@ -71,6 +74,12 @@ let
];
depsBuildBuild = [ buildPackages.stdenv.cc ];
buildInputs = [
ncurses # tools/kwboot
libuuid # tools/mkeficapsule
gnutls # tools/mkeficapsule
];
hardeningDisable = [ "all" ];
enableParallelBuilding = true;