avrbinutils: 2.30 -> 2.31.1

Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/avr-binutils/versions.
This commit is contained in:
R. RyanTM 2018-08-08 19:19:08 -07:00
parent 20f1388c3f
commit 1e0f87bfbc

View File

@ -1,14 +1,14 @@
{ stdenv, fetchurl }:
let
version = "2.30";
version = "2.31.1";
in
stdenv.mkDerivation {
name = "avr-binutils-${version}";
src = fetchurl {
url = "mirror://gnu/binutils/binutils-${version}.tar.bz2";
sha256 = "028cklfqaab24glva1ks2aqa1zxa6w6xmc8q34zs1sb7h22dxspg";
sha256 = "1l34hn1zkmhr1wcrgf0d4z7r3najxnw3cx2y2fk7v55zjlk3ik7z";
};
configureFlags = "--target=avr --enable-languages=c,c++";