From 0418438ea19f716414a06a6fa1a48bc0871df5dd Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Fri, 28 Sep 2018 20:43:50 +0200 Subject: [PATCH] nix: add gcc-arm-embedded to shell.nix --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 15fb521df..7b90dc9c2 100644 --- a/shell.nix +++ b/shell.nix @@ -5,5 +5,5 @@ let in stdenv.mkDerivation { name = "trezor-core-dev"; - buildInputs = [ myPython protobuf scons gnumake gcc pkgconfig SDL2 SDL2_image ]; + buildInputs = [ myPython protobuf scons gnumake gcc gcc-arm-embedded pkgconfig SDL2 SDL2_image ]; }