mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 14:08:11 +00:00
10 lines
261 B
Nix
10 lines
261 B
Nix
with import <nixpkgs> {};
|
|
|
|
let
|
|
myPython = python3.withPackages(p: [p.trezor p.Mako p.munch p.pillow]);
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "trezor-mcu-dev";
|
|
buildInputs = [ myPython protobuf gnumake gcc gcc-arm-embedded pkgconfig SDL2 SDL2_image ];
|
|
}
|