Compare commits

...

2 commits

Author SHA1 Message Date
Bignaux Ronan
df13bc20fa
Merge b59f65f94e into 127c353b39 2024-10-11 10:26:35 +00:00
Bignaux Ronan
b59f65f94e add a nix shell script for nix users 2024-10-11 12:25:39 +02:00

26
shell.nix Normal file
View file

@ -0,0 +1,26 @@
with import <nixpkgs> { };
mkShell {
name = "mtkclient";
buildInputs = with python3Packages; [
capstone
colorama
flake8
fusepy
keystone
keystone-engine
mock
pycryptodome
pycryptodomex
pyserial
pyside6
pyusb
setuptools
shiboken6
unicorn
wheel
];
}