avr-libc: 2.1.0 -> 2.2.0

This commit is contained in:
Henner Zeller 2024-06-08 18:01:47 -07:00
parent f07f2b3c4a
commit 6e06ea9ca7

View File

@ -2,11 +2,12 @@
stdenv.mkDerivation rec {
pname = "avr-libc";
version = "2.1.0";
version = "2.2.0";
tag_version = builtins.replaceStrings ["."] ["_"] version;
src = fetchurl {
url = "https://download.savannah.gnu.org/releases/avr-libc/avr-libc-${version}.tar.bz2";
sha256 = "1s2lnqsbr1zs7dvsbyyckay52lm8mbjjaqf3cyx5qpcbq3jwx10b";
url = "https://github.com/avrdudes/avr-libc/releases/download/avr-libc-${tag_version}-release/avr-libc-${version}.tar.bz2";
hash = "sha256-Bxjv1PVCeId9ploLIDtAIHOzDgTf6piObyqINa0HHTU=";
};
nativeBuildInputs = [ automake autoconf ];