let pkgs = import { 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 = "034l4sxy4adgd97v0ldk844j6m62v8lflavzhs9wnk82mzihglgp"; cargoSha256SZL = "0p9bvydk8jrzpc57cn7x9k5m89x1g0vfvar7i5gph7q9pvnkh6sh"; build-crate = name: crate: features: cargoSha256: rustPlatform.buildRustPackage rec { name = "${crate}"; src = builtins.filterSource (path: type: baseNameOf path != "target" ) ./.; inherit cargoSha256; nativeBuildInputs = [ cargo-xbuild pkgs.llvmPackages_9.clang-unwrapped ]; 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)