package third_party.cmd

@App
@AutoCmd
@Build(stage=2,script="$(EXTERNAL_MAKE)")
@Cmd(name = "nano",
	help = "Text editor",
	man = '''
		NAME
			nano - Nano's ANOther editor
		SYNOPSIS
			nano [OPTIONS] [[+LINE,COLUMN] FILE]...
		AUTHORS
			Ilia Vaprol - Adaptation for Embox
	''')
module nano {
	source "^BUILD/extbld/^MOD_PATH/install/nano.o"

	@NoRuntime depends embox.compat.LibCurses
	@NoRuntime depends embox.compat.libc.stdlib.mktemp
	@NoRuntime depends embox.compat.posix.regex
	@NoRuntime depends embox.compat.posix.file_system
}
