1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-09 06:50:58 +00:00
trezor-firmware/shell.nix

10 lines
253 B
Nix
Raw Normal View History

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