2019-05-05 20:56:23 +08:00
|
|
|
let
|
2020-09-09 16:51:50 +08:00
|
|
|
pkgs = import <nixpkgs> { overlays = [ (import ./nix/mozilla-overlay.nix) ]; };
|
|
|
|
rustPlatform = (import ./nix/rust-platform.nix { inherit pkgs; });
|
|
|
|
build-crate = name: crate: features:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
name = "${crate}";
|
|
|
|
|
|
|
|
src = ./.;
|
|
|
|
cargoSha256 = "1gdxrsn58mabqf8yc3xqkrl1qlmlyvpnzcfj4xafpdr1gdhwhdjg";
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgs.cargo-xbuild ];
|
2019-09-26 23:54:37 +08:00
|
|
|
buildPhase = ''
|
2020-09-09 16:51:50 +08:00
|
|
|
export XARGO_RUST_SRC="${rustPlatform.rust.rustc.src}/src"
|
|
|
|
export CARGO_HOME=$(mktemp -d cargo-home.XXX)
|
|
|
|
pushd ${crate}
|
2020-01-26 08:45:02 +08:00
|
|
|
cargo xbuild --release --frozen \
|
|
|
|
--no-default-features \
|
2020-09-09 16:51:50 +08:00
|
|
|
--features=${features}
|
2020-01-26 08:45:02 +08:00
|
|
|
popd
|
2019-09-26 23:54:37 +08:00
|
|
|
'';
|
2020-09-09 16:51:50 +08:00
|
|
|
|
2019-09-26 23:54:37 +08:00
|
|
|
installPhase = ''
|
2020-09-09 16:51:50 +08:00
|
|
|
mkdir -p $out $out/nix-support
|
2019-09-26 23:54:37 +08:00
|
|
|
cp target/armv7-none-eabihf/release/${name} $out/${name}.elf
|
2020-09-09 16:51:50 +08:00
|
|
|
echo file binary-dist $out/${name}.elf >> $out/nix-support/hydra-build-products
|
2019-09-26 23:54:37 +08:00
|
|
|
'';
|
2020-09-09 16:51:50 +08:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
dontFixup = true;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
2020-09-09 17:12:08 +08:00
|
|
|
zc706-experiments = build-crate "zc706-experiments" "experiments" "target_zc706";
|
|
|
|
cora-experiments = build-crate "cora-experiments" "experiments" "target_cora_z7_10";
|
|
|
|
zc706-fsbl = (import ./nix/fsbl.nix { inherit pkgs; });
|
2020-09-09 16:51:50 +08:00
|
|
|
}
|