diff --git a/.nix/shell.nix b/.nix/shell.nix new file mode 100644 index 00000000..e89399e9 --- /dev/null +++ b/.nix/shell.nix @@ -0,0 +1,10 @@ +let + nixpkgs = import {}; +in +with nixpkgs; pkgs.mkShell { + buildInputs = [ + libusb1 + pkg-config + rustup + ]; +}