{ pkgs }: pkgs.symlinkJoin { name = "tb-scripts"; meta = { description = "Custom utility scripts for TB - available on all systems"; maintainers = [ ]; }; paths = [ (pkgs.writeShellApplication { name = ",jq_reformat"; runtimeInputs = [ pkgs.jq ]; text = builtins.readFile ./jq_reformat.sh; }) (pkgs.writeShellApplication { name = ",rename_lower"; runtimeInputs = [ pkgs.python3 ]; text = '' python3 - "$@" <<'PYTHON_SCRIPT' ${builtins.readFile ./rename_lower.py} PYTHON_SCRIPT ''; }) ]; }