/** * **unibilium** - https://github.com/neovim/neovim/blob/master/MAINTAIN.md#third-party-dependencies * * @domain `github.com/neovim/unibilium` * @version `2.1.2` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/neovim/unibilium` * @buildDependencies `cmake.org@^3`, `gnu.org/libtool` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomneovimunibilium * console.log(pkg.name) // "unibilium" * console.log(pkg.description) // "https://github.com/neovim/neovim/blob/master/MA..." * console.log(pkg.versions[0]) // "2.1.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/neovim/unibilium.md * @see https://ts-pkgx.netlify.app/usage */ export declare const unibiliumPackage: { /** * The display name of this package. */ name: 'unibilium'; /** * The canonical domain name for this package. */ domain: 'github.com/neovim/unibilium'; /** * Brief description of what this package does. */ description: 'https://github.com/neovim/neovim/blob/master/MAINTAIN.md#third-party-dependencies'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/neovim/unibilium/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/neovim/unibilium'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/neovim/unibilium'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/neovim/unibilium -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/neovim/unibilium'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org@^3', 'gnu.org/libtool']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.1.2', '2.1.1']; aliases: readonly [] }; export type UnibiliumPackage = typeof unibiliumPackage