{ 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.writers.writePython3Bin ",rename_lower" { libraries = [ ]; } (builtins.readFile ./rename_lower.py)) (pkgs.writeShellApplication { name = ",zipdir"; runtimeInputs = [ pkgs.zip ]; text = builtins.readFile ./zipdir; }) ]; }