Skip to content

Commit

Permalink
Merge pull request NixOS#335480 from hzeller/feature-20240817-update-…
Browse files Browse the repository at this point in the history
…avrlibc

avr-libc: 2.2.0 -> 2.2.1
  • Loading branch information
emilytrau authored Aug 18, 2024
2 parents dbde864 + b7b0f06 commit 0500d25
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkgs/development/misc/avr/libc/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ lib, stdenv, fetchurl, automake, autoconf }:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "avr-libc";
version = "2.2.0";
version = "2.2.1";

tag_version = builtins.replaceStrings ["."] ["_"] version;
tag_version = builtins.replaceStrings ["."] ["_"] finalAttrs.version;
src = fetchurl {
url = "https://github.com/avrdudes/avr-libc/releases/download/avr-libc-${tag_version}-release/avr-libc-${version}.tar.bz2";
hash = "sha256-Bxjv1PVCeId9ploLIDtAIHOzDgTf6piObyqINa0HHTU=";
url = "https://github.com/avrdudes/avr-libc/releases/download/avr-libc-${finalAttrs.tag_version}-release/avr-libc-${finalAttrs.version}.tar.bz2";
hash = "sha256-AGpjBsu8k4w721g6xU+T/n18jPl/nN6R+RxvsCc6tGU=";
};

nativeBuildInputs = [ automake autoconf ];
Expand All @@ -29,4 +29,4 @@ stdenv.mkDerivation rec {
platforms = [ "avr-none" ];
maintainers = with maintainers; [ mguentner emilytrau ];
};
}
})

0 comments on commit 0500d25

Please sign in to comment.