/** * **gnutls** - pkgx package * * @domain `gnutls.org` * @programs `certtool`, `danetool`, `gnutls-cli`, `gnutls-cli-debug`, `gnutls-serv`, ... (+3 more) * @version `3.8.11` (12 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnutls.org` * @dependencies `freedesktop.org/p11-kit`, `gnu.org/libidn2`, `gnu.org/libunistring^1`, ... (+6 more) * @buildDependencies `linux:gnu.org/gcc` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnutlsorg * console.log(pkg.name) // "gnutls" * console.log(pkg.programs) // ["certtool", "danetool", ...] * console.log(pkg.versions[0]) // "3.8.11" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnutls-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnutlsorgPackage: { /** * The display name of this package. */ name: 'gnutls'; /** * The canonical domain name for this package. */ domain: 'gnutls.org'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnutls.org/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnutls.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnutls.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnutls.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['certtool', 'danetool', 'gnutls-cli', 'gnutls-cli-debug', 'gnutls-serv', 'ocsptool', 'p11tool', 'psktool']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['freedesktop.org/p11-kit', 'gnu.org/libidn2', 'gnu.org/libunistring^1', 'gnu.org/libtasn1^4', 'gnu.org/nettle', 'gnu.org/gettext', 'gnu.org/gmp', 'unbound.net^1', 'curl.se/ca-certs']; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['linux:gnu.org/gcc']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.8.11', '3.8.10', '3.8.9', '3.8.7', '3.8.6', '3.8.5', '3.8.4', '3.8.3', '3.8.2', '3.8.1', '3.7.10', '3.6.16']; aliases: readonly [] }; export type GnutlsorgPackage = typeof gnutlsorgPackage