forked from M-Labs/zynq-rs
49 lines
1.8 KiB
Nix
49 lines
1.8 KiB
Nix
let
|
|
pkgs = import <nixpkgs> { overlays = [ (import ./nix/mozilla-overlay.nix) ]; };
|
|
rustPlatform = (import ./nix/rust-platform.nix { inherit pkgs; });
|
|
cargo-xbuild = (pkgs.cargo-xbuild.overrideAttrs(oa: { patches = oa.patches ++ [ ./xbuild_writable_lockfile.diff ]; } ));
|
|
cargoSha256Experiments = "1c6i45ll2wwj741wsyqn4wdykcm0cg2nmn4d9v534i88rddvgxr6";
|
|
cargoSha256SZL = "0yw66kldnb9hqbsr6mfh6b4i3w9y80d2sydvgqg0bx4lr89g5zkj";
|
|
build-crate = name: crate: features: cargoSha256:
|
|
rustPlatform.buildRustPackage rec {
|
|
name = "${crate}";
|
|
|
|
src = builtins.filterSource (path: type:
|
|
baseNameOf path != "target"
|
|
) ./.;
|
|
inherit cargoSha256;
|
|
|
|
nativeBuildInputs = [ cargo-xbuild ];
|
|
buildPhase = ''
|
|
export XARGO_RUST_SRC="${rustPlatform.rust.rustc}/lib/rustlib/src/rust/library"
|
|
export CARGO_HOME=$(mktemp -d cargo-home.XXX)
|
|
pushd ${crate}
|
|
cargo xbuild --release --frozen \
|
|
--no-default-features \
|
|
--features=${features}
|
|
popd
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out $out/nix-support
|
|
cp target/armv7-none-eabihf/release/${name} $out/${name}.elf
|
|
echo file binary-dist $out/${name}.elf >> $out/nix-support/hydra-build-products
|
|
'';
|
|
|
|
doCheck = false;
|
|
dontFixup = true;
|
|
};
|
|
|
|
targetCrates = target: {
|
|
"${target}-experiments" = build-crate "${target}-experiments" "experiments" "target_${target}" cargoSha256Experiments;
|
|
"${target}-szl" = build-crate "${target}-szl" "szl" "target_${target}" cargoSha256SZL;
|
|
};
|
|
targets = ["zc706" "coraz7" "redpitaya" "kasli_soc"];
|
|
in
|
|
{
|
|
inherit cargo-xbuild;
|
|
zc706-fsbl = import ./nix/fsbl.nix { inherit pkgs; };
|
|
} // (builtins.foldl' (results: target:
|
|
results // targetCrates target
|
|
) {} targets)
|