{ pkgs }: pkgs.writeShellApplication { name = "rocksky"; runtimeInputs = [ pkgs.bun ]; text = '' exec ${pkgs.bun}/bin/bun x @rocksky/cli "$@" ''; }