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

10 lines
314 B
Nix
Raw Normal View History

with import <nixpkgs> {};
let
2018-10-04 15:53:29 +00:00
myPython = python36.withPackages(ps: [ps.trezor ps.pytest ps.flake8 ps.isort ps.black ps.Mako ps.munch]);
in
stdenv.mkDerivation {
name = "trezor-core-dev";
2018-10-12 14:50:09 +00:00
buildInputs = [ myPython protobuf scons gnumake gcc gcc-arm-embedded-7 pkgconfig SDL2 SDL2_image autoflake ];
}