UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

62 lines 2.12 kB
/** * **gnu.org/nettle** - A mirror of the nettle repository * * @domain `gnu.org/nettle` * @programs `nettle-hash`, `nettle-lfib-stream`, `nettle-pbkdf2`, `pkcs1-conv`, `sexp-conv` * @version `3.8.1` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/nettle` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorgnettle * console.log(pkg.name) // "gnu.org/nettle" * console.log(pkg.description) // "A mirror of the nettle repository" * console.log(pkg.programs) // ["nettle-hash", "nettle-lfib-stream", ...] * console.log(pkg.versions[0]) // "3.8.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/nettle.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorgnettlePackage: { /** * The display name of this package. */ name: 'gnu.org/nettle'; /** * The canonical domain name for this package. */ domain: 'gnu.org/nettle'; /** * Brief description of what this package does. */ description: 'A mirror of the nettle repository'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/nettle/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnu.org/nettle'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['nettle-hash', 'nettle-lfib-stream', 'nettle-pbkdf2', 'pkcs1-conv', 'sexp-conv']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.8.1']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/nettle -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/nettle' }; export type GnuorgnettlePackage = typeof gnuorgnettlePackage