1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-27 16:48:09 +00:00
trezor-firmware/shell.nix

10 lines
257 B
Nix
Raw Normal View History

with import <nixpkgs> {};
let
2018-10-01 09:51:48 +00:00
myPython = python36.withPackages(ps: [ps.trezor ps.pytest]);
in
stdenv.mkDerivation {
name = "trezor-core-dev";
2018-09-28 18:43:50 +00:00
buildInputs = [ myPython protobuf scons gnumake gcc gcc-arm-embedded pkgconfig SDL2 SDL2_image ];
}