diff --git a/shell.nix b/shell.nix new file mode 100644 index 000000000..e09b2131d --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +with import {}; + +let + myPython = python36.withPackages(p: [p.trezor p.Mako p.munch]); +in + stdenv.mkDerivation { + name = "trezor-mcu-dev"; + buildInputs = [ myPython protobuf gnumake gcc gcc-arm-embedded pkgconfig SDL2 SDL2_image ]; + }