nixfmt shell.nix

This commit is contained in:
Bignaux Ronan 2024-10-10 17:42:59 +02:00
parent 6e5f0f248f
commit d48231c99e

View file

@ -1,30 +1,30 @@
with import <nixpkgs> {};
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
# workaround : use qttools in place of pyside6 script
# since they are missing https://github.com/NixOS/nixpkgs/issues/277849
buildInputs = with python3Packages; [
capstone
colorama
flake8
fusepy
keystone
keystone-engine
mock
pycryptodome
pycryptodomex
pyserial
pyside6
pyusb
setuptools
shiboken6
unicorn
wheel
# workaround : use qttools in place of pyside6 script
# since they are missing https://github.com/NixOS/nixpkgs/issues/277849
qt5.qttools
];
];
}