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

10 lines
320 B
Nix
Raw Normal View History

with import <nixpkgs> {};
let
2019-01-29 01:14:34 +00:00
myPython = python3.withPackages(ps: [ps.trezor ps.pytest ps.flake8 ps.isort ps.black ps.Mako ps.munch ps.Pyro4]);
in
stdenv.mkDerivation {
name = "trezor-core-dev";
2019-01-10 11:40:21 +00:00
buildInputs = [ myPython protobuf scons gnumake gcc gcc-arm-embedded pkgconfig SDL2 SDL2_image autoflake ];
}