Skip to content

Commit

Permalink
shell.nix: Downgrade gcc-arm-embedded (#5913)
Browse files Browse the repository at this point in the history
Temporary fix for #5868
  • Loading branch information
rvolosatovs authored and skullydazed committed Jul 16, 2019
1 parent 1209fb8 commit 72df7b4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ with pkgs;
let
avrbinutils = pkgsCross.avr.buildPackages.binutils;
avrlibc = pkgsCross.avr.libcCross;
gcc-arm-embedded = pkgsCross.arm-embedded.buildPackages.gcc;
gcc-arm-embedded = (import (builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs-channels/archive/87f146a41c463a64c93022b11cf19716b3a22037.tar.gz";
sha256 = "0rk8haf19plw6vyvq0am99rik0hrrysknjw0f2vs7985awngy3q2";
}) {}).gcc-arm-embedded;

avr_incflags = [
"-isystem ${avrlibc}/avr/include"
Expand Down

0 comments on commit 72df7b4

Please sign in to comment.