/** * **nasm.us** - A cross-platform x86 assembler with an Intel-like syntax * * @domain `nasm.us` * @programs `nasm`, `ndisasm` * @version `3.1.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install nasm.us` * @homepage https://www.nasm.us/ * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.nasmus * console.log(pkg.name) // "nasm.us" * console.log(pkg.description) // "A cross-platform x86 assembler with an Intel-li..." * console.log(pkg.programs) // ["nasm", "ndisasm"] * console.log(pkg.versions[0]) // "3.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/nasm-us.md * @see https://ts-pkgx.netlify.app/usage */ export declare const nasmusPackage: { /** * The display name of this package. */ name: 'nasm.us'; /** * The canonical domain name for this package. */ domain: 'nasm.us'; /** * Brief description of what this package does. */ description: 'A cross-platform x86 assembler with an Intel-like syntax'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/nasm.us/package.yml'; homepageUrl: 'https://www.nasm.us/'; githubUrl: 'https://github.com/netwide-assembler/nasm'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install nasm.us'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +nasm.us -- $SHELL -i'; launchpadInstallCommand: 'launchpad install nasm.us'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['nasm', 'ndisasm']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.1.0', '3.0.0', '2.16.3', '2.16.2', '2.15.5']; aliases: readonly [] }; export type NasmusPackage = typeof nasmusPackage