From d210b2b13f67efc2420fcc6c6936c548994425f2 Mon Sep 17 00:00:00 2001 From: Astro Date: Thu, 26 Sep 2019 16:24:47 +0200 Subject: [PATCH] shell.nix: use gcc cross pkg that actually builds --- shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell.nix b/shell.nix index 1f59b6dd..d0a67298 100644 --- a/shell.nix +++ b/shell.nix @@ -12,8 +12,8 @@ stdenv.mkDerivation { buildInputs = (with rustPlatform.rust; [ rustc cargo cargo-xbuild rustcSrc - pkgsCross.armhf-embedded.buildPackages.gcc - #pkgsCross.armv7l-hf-multiplatform.buildPackages.gcc + # pkgsCross.armhf-embedded.buildPackages.gcc + pkgsCross.armv7l-hf-multiplatform.buildPackages.gcc #pkgsCross.armhf-embedded.buildPackages.binutils ]) ++ (with pkgs; [ openocd gdb ]);