1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-10 01:49:05 +00:00
trezor-firmware/legacy/shell.nix

10 lines
273 B
Nix
Raw Normal View History

2018-09-28 18:48:30 +00:00
with import <nixpkgs> {};
let
myPython = python3.withPackages(p: [p.trezor p.Mako p.munch p.pillow]);
2018-09-28 18:48:30 +00:00
in
stdenv.mkDerivation {
name = "trezor-mcu-dev";
buildInputs = [ myPython protobuf gnumake gcc gcc-arm-embedded pkgconfig SDL2 SDL2_image clang-tools ];
2018-09-28 18:48:30 +00:00
}