about summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorFabián Heredia Montiel <303897+fabianhjr@users.noreply.github.com>2023-09-19 15:30:18 -0600
committerGitHub <noreply@github.com>2023-09-19 15:30:18 -0600
commitccd211c6bedeec5b29c3dc9c1d286ae7610965f4 (patch)
tree43f1da69466a977754b0d3388f8794ee38d21da8 /pkgs/development/tools/misc
parent1616292fdba5177e345fd8dc379bdb7c4f31a4ec (diff)
parentf52c368f1700c810e16c5d918e09a87559c15509 (diff)
downloadnixlib-ccd211c6bedeec5b29c3dc9c1d286ae7610965f4.tar
nixlib-ccd211c6bedeec5b29c3dc9c1d286ae7610965f4.tar.gz
nixlib-ccd211c6bedeec5b29c3dc9c1d286ae7610965f4.tar.bz2
nixlib-ccd211c6bedeec5b29c3dc9c1d286ae7610965f4.tar.lz
nixlib-ccd211c6bedeec5b29c3dc9c1d286ae7610965f4.tar.xz
nixlib-ccd211c6bedeec5b29c3dc9c1d286ae7610965f4.tar.zst
nixlib-ccd211c6bedeec5b29c3dc9c1d286ae7610965f4.zip
Merge pull request #255352 from jmbaur/coreboot-toolchain-gnat
coreboot-toolchain: Unpin gnat
Diffstat (limited to 'pkgs/development/tools/misc')
-rw-r--r--pkgs/development/tools/misc/coreboot-toolchain/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/coreboot-toolchain/default.nix b/pkgs/development/tools/misc/coreboot-toolchain/default.nix
index 66eff5e2427c..6591651ee65b 100644
--- a/pkgs/development/tools/misc/coreboot-toolchain/default.nix
+++ b/pkgs/development/tools/misc/coreboot-toolchain/default.nix
@@ -8,7 +8,7 @@ let
     , flex
     , getopt
     , git
-    , gnat11
+    , gnat
     , gcc
     , lib
     , perl
@@ -35,7 +35,7 @@ let
       };
 
       nativeBuildInputs = [ bison curl git perl ];
-      buildInputs = [ flex zlib (if withAda then gnat11 else gcc) ];
+      buildInputs = [ flex zlib (if withAda then gnat else gcc) ];
 
       enableParallelBuilding = true;
       dontConfigure = true;