1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 15:38:11 +00:00

nix: add shell.nix

This commit is contained in:
Pavol Rusnak 2018-10-19 18:02:40 +02:00
parent aa452a5716
commit 8cabc077db
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

9
shell.nix Normal file
View File

@ -0,0 +1,9 @@
with import <nixpkgs> {};
let
myPython = python36.withPackages(p: [p.click p.graphviz p.trezor p.ed25519 p.pillow]) ;
in
stdenv.mkDerivation {
name = "trezor-common-dev";
buildInputs = [ myPython python27Packages.demjson graphviz ];
}