diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..4fbaa51 --- /dev/null +++ b/shell.nix @@ -0,0 +1,10 @@ +with import {}; +with python38Packages; + +buildPythonPackage rec { + name = "mvt"; + src = ./.; + propagatedBuildInputs = [ pkgs.libusb1 libusb1 ]; + nativeBuildInputs = [ pkgs.libusb1 ]; +} +