/** * **tmux** - Terminal multiplexer * * @domain `github.com/tmux/tmux` * @programs `tmux` * @version `3.6a` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/tmux/tmux` * @homepage https://tmux.github.io/ * @dependencies `libevent.org^2.0`, `invisible-island.net/ncurses` * @buildDependencies `gnu.org/bison` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomtmuxtmux * console.log(pkg.name) // "tmux" * console.log(pkg.description) // "Terminal multiplexer" * console.log(pkg.programs) // ["tmux"] * console.log(pkg.versions[0]) // "3.6a" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/tmux/tmux.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tmuxPackage: { /** * The display name of this package. */ name: 'tmux'; /** * The canonical domain name for this package. */ domain: 'github.com/tmux/tmux'; /** * Brief description of what this package does. */ description: 'Terminal multiplexer'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/tmux/tmux/package.yml'; homepageUrl: 'https://tmux.github.io/'; githubUrl: 'https://github.com/tmux/tmux'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/tmux/tmux'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/tmux/tmux -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/tmux/tmux'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tmux']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['libevent.org^2.0', 'invisible-island.net/ncurses']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/bison']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.6a', '3.6.0', '3.5a', '3.5.0', '3.4.0', '3.3a', '3.3.0']; aliases: readonly [] }; export type TmuxPackage = typeof tmuxPackage