From b59f65f94e1f7cb40568efe5f9df5c77ee123e00 Mon Sep 17 00:00:00 2001 From: Bignaux Ronan Date: Thu, 10 Oct 2024 17:37:28 +0200 Subject: [PATCH] add a nix shell script for nix users --- shell.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 00000000..8d7646ab --- /dev/null +++ b/shell.nix @@ -0,0 +1,26 @@ +with import { }; + +mkShell { + + name = "mtkclient"; + + buildInputs = with python3Packages; [ + capstone + colorama + flake8 + fusepy + keystone + keystone-engine + mock + pycryptodome + pycryptodomex + pyserial + pyside6 + pyusb + setuptools + shiboken6 + unicorn + wheel + ]; + +}