1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-10 09:58:59 +00:00
trezor-firmware/shell.nix
2019-01-29 02:10:53 +01:00

10 lines
252 B
Nix

with import <nixpkgs> {};
let
myPython = python3.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 ];
}