1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-12 18:49:07 +00:00

nix: add shell.nix

This commit is contained in:
Pavol Rusnak 2018-10-16 11:29:58 +02:00
parent 60b5b7032c
commit a938a1c901
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

6
shell.nix Normal file
View File

@ -0,0 +1,6 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "trezor-crypto-dev";
buildInputs = [ gnumake gcc pkgconfig openssl check ];
}