From 98dedc7baa7916dc158cfa47a949014c214e3f59 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Fri, 28 Sep 2018 20:48:30 +0200 Subject: [PATCH] nix: add shell.nix --- shell.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 shell.nix 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 ]; + }