From f95b6afa1551984be7e2d53ee3716d8518d8f4c6 Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Fri, 20 Feb 2026 20:36:32 +0800 Subject: [PATCH] scripts: Add shell.nix Use nix-shell to enter an FHS environment to run the pre-built uartupdatetool unpatched. Signed-off-by: Daniel Schaefer --- scripts/shell.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 scripts/shell.nix 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