about summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorJared Baur <jaredbaur@fastmail.com>2023-09-15 13:04:08 -0700
committerJared Baur <jaredbaur@fastmail.com>2023-09-15 13:04:08 -0700
commitf52c368f1700c810e16c5d918e09a87559c15509 (patch)
tree1821e78a34d884b1252afed87663a35087192091 /pkgs/development/tools/misc
parentdc1668abd00fd03f9399f1e65d9a485b010405dc (diff)
downloadnixlib-f52c368f1700c810e16c5d918e09a87559c15509.tar
nixlib-f52c368f1700c810e16c5d918e09a87559c15509.tar.gz
nixlib-f52c368f1700c810e16c5d918e09a87559c15509.tar.bz2
nixlib-f52c368f1700c810e16c5d918e09a87559c15509.tar.lz
nixlib-f52c368f1700c810e16c5d918e09a87559c15509.tar.xz
nixlib-f52c368f1700c810e16c5d918e09a87559c15509.tar.zst
nixlib-f52c368f1700c810e16c5d918e09a87559c15509.zip
coreboot-toolchain: Unpin gnat
Gnat11 is currently broken, but I cannot find anywhere in coreboot's
build instructions that gnat should be pinned at 11, so switch the
toolchain from using gnat11 to gnat, which is currently version 12.
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;