mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 20:04:19 +08:00
21 lines
389 B
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
|
|
"""
|
|
|