From 32aa10f0972b9a8bc8ad6e6bc831cca4e4789885 Mon Sep 17 00:00:00 2001 From: Jacek Galowicz Date: Sun, 21 Aug 2022 17:26:40 +0200 Subject: [PATCH] ubootTools: Fix after update of uboot to 2022.07 --- pkgs/misc/uboot/default.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix index 7dd88a5b3119..579ef6a30dd5 100644 --- a/pkgs/misc/uboot/default.nix +++ b/pkgs/misc/uboot/default.nix @@ -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;