1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-17 01:52:02 +00:00
trezor-firmware/shell.nix

10 lines
228 B
Nix

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 ];
}