redox/recipes/nushell/recipe.toml
2023-05-08 08:13:54 -06:00

21 lines
388 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 = [
"openssl"
]
template = "custom"
script = """
export OPENSSL_DIR="${COOKBOOK_SYSROOT}"
export OPENSSL_STATIC="true"
cookbook_cargo
"""