Unverified Commit 6fc17eb2 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #197856 from emilytrau/avrlibc-2.1.0

avrlibc: 2.0.0 -> 2.1.0
parents 225134a9 f42a6221
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
  pname = "avr-libc";
  version = "2.0.0";
  version = "2.1.0";

  src = fetchurl {
    url = "https://download.savannah.gnu.org/releases/avr-libc/avr-libc-2.0.0.tar.bz2";
    sha256 = "15svr2fx8j6prql2il2fc0ppwlv50rpmyckaxx38d3gxxv97zpdj";
    url = "https://download.savannah.gnu.org/releases/avr-libc/avr-libc-${version}.tar.bz2";
    sha256 = "1s2lnqsbr1zs7dvsbyyckay52lm8mbjjaqf3cyx5qpcbq3jwx10b";
  };

  nativeBuildInputs = [ automake autoconf ];
@@ -21,9 +21,9 @@ stdenv.mkDerivation rec {

  meta = with lib; {
    description = "a C runtime library for AVR microcontrollers";
    homepage = "https://savannah.nongnu.org/projects/avr-libc/";
    homepage = "https://github.com/avrdudes/avr-libc";
    license = licenses.bsd3;
    platforms = [ "avr-none" ];
    maintainers = with maintainers; [ mguentner ];
    maintainers = with maintainers; [ mguentner emilytrau ];
  };
}