27 lines
526 B
Plaintext
27 lines
526 B
Plaintext
// recipes/nipbox/nipbox-shell.kdl
|
|
// Multi-call binary with echo/cat/ls/cp, linked to libnexus.a.
|
|
|
|
package "nipbox-shell" {
|
|
version "0.1.0"
|
|
description "Sovereign Userland Shell"
|
|
|
|
binary "nipbox" {
|
|
source "src/nipbox.nim"
|
|
type "multicall"
|
|
|
|
commands {
|
|
cmd "echo"
|
|
cmd "cat"
|
|
cmd "ls"
|
|
cmd "cp"
|
|
cmd "mv"
|
|
cmd "rm"
|
|
}
|
|
|
|
link {
|
|
library "libnexus.a"
|
|
static true
|
|
}
|
|
}
|
|
}
|