This commit is contained in:
Max Känner 2026-05-04 00:14:04 +02:00
parent e863d2832d
commit be515c4c69
6 changed files with 14 additions and 26 deletions

View file

@ -5,14 +5,14 @@
systems_table = {
"x86_64-linux" = {
system = "x86_64-linux-gnu";
hash = "sha256:1s86y3wss3vp5r6c076gz23hs62rkx1qc6vffjp42md86krrv1di";
hash = "sha256:19xg94aajrsc9fjxv2h9v854rgmxp34li8nrhjb7dxqzpxn0l2af";
};
};
system_download = systems_table.${system};
in
pkgs.stdenv.mkDerivation rec {
pname = "xtensa-esp-elf";
version = "14.2.0_20241119";
version = "14.2.0_20260121";
src =
builtins.fetchurl
{
@ -32,6 +32,6 @@ in
installPhase = ''
mkdir -p "$out"
cp -R ./{bin,lib} "$out"
cp -R ./{bin,lib,libexec} "$out"
'';
}