mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #37633 from thefloweringash/avrgcc-upgrade
avrgcc: 5.4.0 -> 7.3.0
This commit is contained in:
commit
84f6b46d6b
1 changed files with 4 additions and 4 deletions
|
@ -1,14 +1,14 @@
|
|||
{ stdenv, fetchurl, gmp, mpfr, libmpc, zlib, avrbinutils, texinfo }:
|
||||
|
||||
let
|
||||
version = "5.4.0";
|
||||
version = "7.3.0";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
|
||||
name = "avr-gcc-${version}";
|
||||
src = fetchurl {
|
||||
url = "mirror://gcc/releases/gcc-${version}/gcc-${version}.tar.bz2";
|
||||
sha256 = "0fihlcy5hnksdxk0sn6bvgnyq8gfrgs8m794b1jxwd1dxinzg3b0";
|
||||
url = "mirror://gcc/releases/gcc-${version}/gcc-${version}.tar.xz";
|
||||
sha256 = "0p71bij6bfhzyrs8676a8jmpjsfz392s2rg862sdnsk30jpacb43";
|
||||
};
|
||||
|
||||
patches = [
|
||||
|
@ -54,7 +54,7 @@ stdenv.mkDerivation {
|
|||
description = "GNU Compiler Collection, version ${version} for AVR microcontrollers";
|
||||
homepage = http://gcc.gnu.org;
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.linux;
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
maintainers = with maintainers; [ mguentner ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue