summary refs log tree commit diff
path: root/pkgs/development/compilers/gcc/11
diff options
context:
space:
mode:
authorManuel Mendez <github@i.m.mmlb.dev>2023-04-07 13:41:49 -0400
committerManuel Mendez <github@i.m.mmlb.dev>2023-04-15 18:52:14 -0400
commit31d680277326600fd73ad5681993447f8e30ac65 (patch)
tree78b77162116ae888ba0d3eef524aafe729b12f7d /pkgs/development/compilers/gcc/11
parent4ab0cbca7202810afb0e947410ce4b4a6ae42628 (diff)
downloadnixpkgs-31d680277326600fd73ad5681993447f8e30ac65.tar
nixpkgs-31d680277326600fd73ad5681993447f8e30ac65.tar.gz
nixpkgs-31d680277326600fd73ad5681993447f8e30ac65.tar.bz2
nixpkgs-31d680277326600fd73ad5681993447f8e30ac65.tar.lz
nixpkgs-31d680277326600fd73ad5681993447f8e30ac65.tar.xz
nixpkgs-31d680277326600fd73ad5681993447f8e30ac65.tar.zst
nixpkgs-31d680277326600fd73ad5681993447f8e30ac65.zip
gnatboot: rename to gnat-bootstrap
Most other bootstrap compilers are named -bootstrap so lets follow that
pattern.
Diffstat (limited to 'pkgs/development/compilers/gcc/11')
-rw-r--r--pkgs/development/compilers/gcc/11/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/compilers/gcc/11/default.nix b/pkgs/development/compilers/gcc/11/default.nix
index cdd82f0631a..32742594666 100644
--- a/pkgs/development/compilers/gcc/11/default.nix
+++ b/pkgs/development/compilers/gcc/11/default.nix
@@ -16,7 +16,7 @@
 , gmp, mpfr, libmpc, gettext, which, patchelf, binutils
 , isl ? null # optional, for the Graphite optimization framework.
 , zlib ? null
-, gnatboot ? null
+, gnat-bootstrap ? null
 , enableMultilib ? false
 , enablePlugin ? stdenv.hostPlatform == stdenv.buildPlatform # Whether to support user-supplied plug-ins
 , name ? "gcc"
@@ -37,7 +37,7 @@ assert stdenv.buildPlatform.isDarwin -> gnused != null;
 
 # The go frontend is written in c++
 assert langGo -> langCC;
-assert langAda -> gnatboot != null;
+assert langAda -> gnat-bootstrap != null;
 
 # threadsCross is just for MinGW
 assert threadsCross != {} -> stdenv.targetPlatform.isWindows;
@@ -126,7 +126,7 @@ let majorVersion = "11";
         fetchurl
         gettext
         gmp
-        gnatboot
+        gnat-bootstrap
         gnused
         isl
         langAda