HeavyX/firmware/default.nix

27 lines
1019 B
Nix
Raw Normal View History

2019-06-08 23:01:37 +08:00
{ rustPlatform, rust-riscv32i-crates, binutils-riscv32, rustc, cargo }:
2019-06-06 13:19:17 +08:00
rustPlatform.buildRustPackage rec {
name = "helloworld";
version = "0.0.0";
src = ./.;
2019-06-08 23:01:37 +08:00
cargoSha256 = "0kf2pnfylfmzm0qvi4jfci43qvrnj1v5f037sb9zpvfqyddhdffl";
# HACK - rustc overlay does not update rustPlatform. Find out why.
configurePhase = ''echo XXX ${rustPlatform.rust.rustc} ${rustPlatform.rust.cargo}'';
2019-06-06 13:19:17 +08:00
buildPhase = ''
export CARGO_HOME=$(mktemp -d cargo-home.XXX)
2019-06-08 19:25:38 +08:00
export RUSTFLAGS="-L ${rust-riscv32i-crates}/lib/rustlib/riscv32i-unknown-none-elf/lib -C linker=${binutils-riscv32}/bin/riscv32-unknown-elf-ld -C link-arg=-Tlink.x"
2019-06-08 23:01:37 +08:00
export RUSTC=${rustc}/bin/rustc
${cargo}/bin/cargo build --release --target riscv32i-unknown-none-elf
2019-06-06 13:19:17 +08:00
'';
doCheck = false;
installPhase = ''
mkdir -p $out
2019-06-08 19:25:38 +08:00
cp target/riscv32i-unknown-none-elf/release/helloworld $out
${binutils-riscv32}/bin/riscv32-unknown-elf-objcopy -O binary target/riscv32i-unknown-none-elf/release/helloworld $out/helloworld.bin
2019-06-06 13:19:17 +08:00
'';
}