redox/recipes/shells/nushell/recipe.toml

21 lines
389 B
TOML

#TODO: build fails to link, we need the following in relibc
# - getgrgid_r
# - getgrouplist
# Additionally, openssl fails to link fprintf and sscanf
[source]
git = "https://github.com/jackpot51/nushell.git"
branch = "redox"
[build]
dependencies = [
"openssl1"
]
template = "custom"
script = """
export OPENSSL_DIR="${COOKBOOK_SYSROOT}"
export OPENSSL_STATIC="true"
cookbook_cargo
"""