/** * **gollum** - An n:m message multiplexer written in Go * * @domain `github.com/gollum/gollum` * @programs `gollum` * @version `6.1.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/gollum/gollum` * @homepage https://gollum.readthedocs.io/en/latest/ * @dependencies `ruby-lang.org^3.1`, `rubygems.org~3.3` * @buildDependencies `cmake.org@^3` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomgollumgollum * console.log(pkg.name) // "gollum" * console.log(pkg.description) // "An n:m message multiplexer written in Go" * console.log(pkg.programs) // ["gollum"] * console.log(pkg.versions[0]) // "6.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/gollum/gollum.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gollumPackage: { /** * The display name of this package. */ name: 'gollum'; /** * The canonical domain name for this package. */ domain: 'github.com/gollum/gollum'; /** * Brief description of what this package does. */ description: 'An n:m message multiplexer written in Go'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/gollum/gollum/package.yml'; homepageUrl: 'https://gollum.readthedocs.io/en/latest/'; githubUrl: 'https://github.com/trivago/gollum'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/gollum/gollum'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/gollum/gollum -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/gollum/gollum'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gollum']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['ruby-lang.org^3.1', 'rubygems.org~3.3']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org@^3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['6.1.0', '6.0.1', '6.0.0', '5.3.2']; aliases: readonly [] }; export type GollumPackage = typeof gollumPackage