You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/shell.nix

10 lines
304 B

with import <nixpkgs> {};
let
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";
buildInputs = [ myPython protobuf scons gnumake gcc gcc-arm-embedded-7 pkgconfig SDL2 SDL2_image ];
}