From 8049bef5a694d12486c4cf8c2c687148c00efec4 Mon Sep 17 00:00:00 2001 From: Ingo Reitz <9l@9lo.re> Date: Fri, 11 Jul 2025 13:37:58 +0200 Subject: [PATCH] coreboot-toolchain: pin gcc and gnat to 14 --- pkgs/development/tools/misc/coreboot-toolchain/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/misc/coreboot-toolchain/default.nix b/pkgs/development/tools/misc/coreboot-toolchain/default.nix index a0d9a450ff55..03da396b9950 100644 --- a/pkgs/development/tools/misc/coreboot-toolchain/default.nix +++ b/pkgs/development/tools/misc/coreboot-toolchain/default.nix @@ -15,8 +15,8 @@ let flex, getopt, git, - gnat, - gcc, + gnat14, + gcc14, lib, perl, stdenvNoCC, @@ -50,7 +50,7 @@ let buildInputs = [ flex zlib - (if withAda then gnat else gcc) + (if withAda then gnat14 else gcc14) ]; enableParallelBuilding = true;