gnu-config: 2023-01-21 -> 2023-07-31

The most interesting change for us is that gnu-config can now [accept]
`*-unknown-none-elf` which means we can use target triples for
lib.systems.*-embedded that are interpreted in the same way by both
nixpkgs and gnu-config.

Reference #165836.

[accept]: https://git.savannah.gnu.org/cgit/config.git/commit/?id=998ba1414387b4ce1a519be234e1609bc7912e0c
This commit is contained in:
sternenseemann 2023-08-05 13:11:55 +02:00
parent 9e34d8ec27
commit 9e910fdd8b

View file

@ -6,22 +6,22 @@
# files.
let
rev = "63acb96f92473ceb5e21d873d7c0aee266b3d6d3";
rev = "d4e37b5868ef910e3e52744c34408084bb13051c";
# Don't use fetchgit as this is needed during Aarch64 bootstrapping
configGuess = fetchurl {
name = "config.guess-${builtins.substring 0 7 rev}";
url = "https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=${rev}";
sha256 = "049qgfh4xjd4fxd7ygm1phd5faqphfvhfcv8dsdldprsp86lf55v";
sha256 = "191czpnbc1nxrygg8fd3839y1f4m9x43rp57vgrsas6p07zzh3c1";
};
configSub = fetchurl {
name = "config.sub-${builtins.substring 0 7 rev}";
url = "https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=${rev}";
sha256 = "1rk30y27mzls49wyfdb5jhzjr08hkxl7xqhnxmhcmkvqlmpsjnxl";
sha256 = "0148p54gw10p6sk2rn3gi9vvqm89rk8kcvl9335ckayhanx31381";
};
in stdenv.mkDerivation {
pname = "gnu-config";
version = "2023-01-21";
version = "2023-07-31";
buildCommand = ''
install -Dm755 ${configGuess} $out/config.guess