1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-20 21:38:26 +00:00

nix: add shell.nix

This commit is contained in:
Pavol Rusnak 2018-09-28 20:48:30 +02:00
parent 86118986bc
commit 98dedc7baa
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

9
shell.nix Normal file
View File

@ -0,0 +1,9 @@
with import <nixpkgs> {};
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 ];
}