/** * **cabal** - Official upstream development repository for Cabal and cabal-install * * @domain `haskell.org/cabal` * @programs `cabal` * @version `3.8.1` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install haskell.org/cabal` * @homepage https://www.haskell.org/cabal/ * @dependencies `haskell.org@9`, `gnu.org/gmp@6`, `zlib.net@1` * @buildDependencies `haskell.org@<9.6.4`, `curl.se`, `tukaani.org/xz@5` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.haskellorgcabal * console.log(pkg.name) // "cabal" * console.log(pkg.description) // "Official upstream development repository for Ca..." * console.log(pkg.programs) // ["cabal"] * console.log(pkg.versions[0]) // "3.8.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/haskell-org/cabal.md * @see https://ts-pkgx.netlify.app/usage */ export declare const haskellorgcabalPackage: { /** * The display name of this package. */ name: 'cabal'; /** * The canonical domain name for this package. */ domain: 'haskell.org/cabal'; /** * Brief description of what this package does. */ description: 'Official upstream development repository for Cabal and cabal-install'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/haskell.org/cabal/package.yml'; homepageUrl: 'https://www.haskell.org/cabal/'; githubUrl: 'https://github.com/haskell/cabal'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install haskell.org/cabal'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +haskell.org/cabal -- $SHELL -i'; launchpadInstallCommand: 'launchpad install haskell.org/cabal'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cabal']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['haskell.org@9', 'gnu.org/gmp@6', 'zlib.net@1']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['haskell.org@<9.6.4', 'curl.se', 'tukaani.org/xz@5']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.8.1', '3.14.2.0', '3.14.1.1', '3.14.1.0', '3.12.1.0', '3.10.3.0', '3.10.1']; aliases: readonly [] }; export type HaskellorgcabalPackage = typeof haskellorgcabalPackage