Compare commits

...

4 commits

Author SHA1 Message Date
Bignaux Ronan
f3ababddba
Merge 78f50d6737 into 127c353b39 2024-10-10 17:29:09 +00:00
Bignaux Ronan
78f50d6737 remove qttools since lrelease/lupdate doesn't support py files 2024-10-10 19:28:51 +02:00
Bignaux Ronan
d48231c99e nixfmt shell.nix 2024-10-10 17:42:59 +02:00
Bignaux Ronan
6e5f0f248f add a nix shell script for nix users 2024-10-10 17:37:28 +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
];
}