diff --git a/scripts/shell.nix b/scripts/shell.nix new file mode 100644 index 0000000..baf6608 --- /dev/null +++ b/scripts/shell.nix @@ -0,0 +1,10 @@ +{ pkgs ? import {} }: + +(pkgs.buildFHSEnv { + name = "framework-debugger-shell"; + targetPkgs = pkgs: with pkgs; [ + libftdi1 + libusb1 + ]; + runScript = "bash"; +}).env