nix-scripts/stm32/default.nix

43 lines
1.3 KiB
Nix
Raw Normal View History

2019-05-31 18:08:19 +08:00
{ # Use master branch of the overlay by default
mozillaOverlay ? import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz),
rustManifest ? builtins.fetchurl "https://static.rust-lang.org/dist/channel-rust-nightly.toml"
}:
let
pkgs = import <nixpkgs> { overlays = [ mozillaOverlay ]; };
rustPlatform = pkgs.recurseIntoAttrs (pkgs.callPackage ./rustPlatform.nix {
inherit rustManifest;
});
buildStm32Firmware = { name, src, cargoSha256 }:
2019-06-01 10:03:08 +08:00
rustPlatform.buildRustPackage rec {
inherit name;
version = "0.0.0";
2019-05-31 18:08:19 +08:00
2019-06-01 10:03:08 +08:00
inherit src cargoSha256;
2019-05-31 18:08:19 +08:00
2019-06-01 10:03:08 +08:00
buildPhase = ''
export CARGO_HOME=$(mktemp -d cargo-home.XXX)
cargo build --release
'';
2019-05-31 18:08:19 +08:00
2019-06-01 10:03:08 +08:00
doCheck = false;
installPhase = ''
mkdir -p $out $out/nix-support
cp target/thumbv7em-none-eabihf/release/${name} $out/${name}.elf
2019-06-01 10:54:07 +08:00
echo file binary-dist $out/${name}.elf >> $out/nix-support/hydra-build-products
2019-06-01 10:03:08 +08:00
'';
};
2019-05-31 18:08:19 +08:00
in
{
stabilizer = buildStm32Firmware {
name = "stabilizer";
2019-06-01 10:35:01 +08:00
src = <stabilizerSrc>;
2019-09-13 13:46:08 +08:00
cargoSha256 = "0ijhy607d3857qhd487m953wdl5a9h91846rvf7yqv0wb71x7lx2";
2019-05-31 18:08:19 +08:00
};
thermostat = buildStm32Firmware {
name = "thermostat";
2019-06-01 10:35:01 +08:00
src = <thermostatSrc>;
2019-08-08 18:31:21 +08:00
cargoSha256 = "08kk6ja9g4j4apa02n02gxpjm62s27aabx33lg0dmzxgr1v5xlr1";
2019-05-31 18:08:19 +08:00
};
}