mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 15:34:18 +08:00
18 lines
444 B
TOML
18 lines
444 B
TOML
[source]
|
|
git = "https://github.com/jD91mZM2/powerline-rs"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
export CARGOFLAGS="--no-default-features --features chrono"
|
|
|
|
# --locked uses a reallyyyy old redox_syscall and libc which fails
|
|
${COOKBOOK_CARGO} install \
|
|
--path "${COOKBOOK_SOURCE}/${COOKBOOK_CARGO_PATH}" \
|
|
--root "${COOKBOOK_STAGE}/usr" \
|
|
--no-track \
|
|
--no-default-features \
|
|
--features chrono \
|
|
${install_flags}
|
|
"""
|