nushell: fix openssl linking issue

This commit is contained in:
Jeremy Soller 2023-05-08 08:13:35 -06:00
parent cb79cb589a
commit 3ea12132db
No known key found for this signature in database
GPG Key ID: DCFCA852D3906975

View File

@ -1,5 +1,4 @@
#TODO: build fails to link, we need the following in relibc
# - cfmakeraw
# - getgrgid_r
# - getgrouplist
# Additionally, openssl fails to link fprintf and sscanf
@ -12,5 +11,10 @@ branch = "redox"
dependencies = [
"openssl"
]
template = "cargo"
template = "custom"
script = """
export OPENSSL_DIR="${COOKBOOK_SYSROOT}"
export OPENSSL_STATIC="true"
cookbook_cargo
"""