From fb4e6c2361ffd88e3a0a48ac8e90034076f25527 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Thu, 15 Aug 2024 08:02:57 -0500 Subject: [PATCH] flake-modules/devshell: add getopt runtimeInput Use a consistent behavior of getopt in launchtests.sh. Wasn't able to use tests command on macbook without including this because the macOS getopt didn't support our usage. --- flake-modules/dev/devshell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake-modules/dev/devshell.nix b/flake-modules/dev/devshell.nix index e0a07bfc..dd2a8731 100644 --- a/flake-modules/dev/devshell.nix +++ b/flake-modules/dev/devshell.nix @@ -37,6 +37,7 @@ launchTest = pkgs.writeShellApplication { name = "launch-tests"; runtimeInputs = with pkgs; [ + getopt jq fzf ];