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
228 B

with import <nixpkgs> {};
let
myPython = python36.withPackages(p: [p.trezor]);
in
stdenv.mkDerivation {
name = "trezor-core-dev";
buildInputs = [ myPython protobuf scons gnumake gcc pkgconfig SDL2 SDL2_image ];
}