/** * **nss** - Libraries for security-enabled client and server applications * * @domain `mozilla.org/nss` * @programs `addbuiltin`, `certutil`, `crmftest`, `ecperf`, `listsuites`, ... (+56 more) * @version `3.92.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install mozilla.org/nss` * @homepage https://firefox-source-docs.mozilla.org/security/nss/index.html * @dependencies `mozilla.org/nspr`, `sqlite.org`, `zlib.net` * @buildDependencies `linux:gnu.org/gcc`, `linux:gnu.org/make` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.mozillaorgnss * console.log(pkg.name) // "nss" * console.log(pkg.description) // "Libraries for security-enabled client and serve..." * console.log(pkg.programs) // ["addbuiltin", "certutil", ...] * console.log(pkg.versions[0]) // "3.92.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/mozilla-org/nss.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mozillaorgnssPackage: { /** * The display name of this package. */ name: 'nss'; /** * The canonical domain name for this package. */ domain: 'mozilla.org/nss'; /** * Brief description of what this package does. */ description: 'Libraries for security-enabled client and server applications'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mozilla.org/nss/package.yml'; homepageUrl: 'https://firefox-source-docs.mozilla.org/security/nss/index.html'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mozilla.org/nss'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +mozilla.org/nss -- $SHELL -i'; launchpadInstallCommand: 'launchpad install mozilla.org/nss'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['addbuiltin', 'certutil', 'crmftest', 'ecperf', 'listsuites', 'multinit', 'ocspresp', 'p7verify', 'pk12util', 'remtest', 'secmodtest', 'ssltap', 'vfychain', 'atob', 'chktest', 'dbtest', 'encodeinttest', 'nonspr10', 'oidcalc', 'pk11ectest', 'pk1sign', 'rsaperf', 'selfserv', 'strsclnt', 'vfyserv', 'baddbdir', 'cmsutil', 'derdump', 'fbectest', 'makepqg', 'nss-config', 'p7content', 'pk11gcmtest', 'pkix-errcodes', 'rsapoptst', 'shlibsign', 'symkeyutil', 'bltest', 'conflict', 'dertimetest', 'fipstest', 'mangle', 'nss-policy-check', 'p7env', 'pk11importtest', 'pp', 'sdbthreadtst', 'signtool', 'tstclnt', 'btoa', 'crlutil', 'digest', 'httpserv', 'modutil', 'ocspclnt', 'p7sign', 'pk11mode', 'pwdecrypt', 'sdrtest', 'signver', 'validation']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['mozilla.org/nspr', 'sqlite.org', 'zlib.net']; /** * 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', 'linux:gnu.org/make']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.92.0']; aliases: readonly [] }; export type MozillaorgnssPackage = typeof mozillaorgnssPackage