2022-01-19 11:13:47 +08:00
|
|
|
{
|
|
|
|
description = "Firmware for the Sinara 8451 Thermostat";
|
|
|
|
|
2024-08-06 13:37:39 +08:00
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
|
2024-06-25 15:46:25 +08:00
|
|
|
inputs.rust-overlay = {
|
|
|
|
url = "github:oxalica/rust-overlay";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2022-01-19 11:13:47 +08:00
|
|
|
|
2024-06-25 15:46:25 +08:00
|
|
|
outputs = { self, nixpkgs, rust-overlay }:
|
2022-01-19 11:13:47 +08:00
|
|
|
let
|
2024-06-25 15:46:25 +08:00
|
|
|
pkgs = import nixpkgs { system = "x86_64-linux"; overlays = [ (import rust-overlay) ]; };
|
2022-01-19 11:13:47 +08:00
|
|
|
|
2024-06-25 15:46:25 +08:00
|
|
|
rust = pkgs.rust-bin.stable."1.66.0".default.override {
|
|
|
|
extensions = [ "rust-src" ];
|
|
|
|
targets = [ "thumbv7em-none-eabihf" ];
|
|
|
|
};
|
|
|
|
rustPlatform = pkgs.makeRustPlatform {
|
2022-01-19 11:13:47 +08:00
|
|
|
rustc = rust;
|
|
|
|
cargo = rust;
|
2024-06-25 15:46:25 +08:00
|
|
|
};
|
|
|
|
|
2024-01-16 15:22:11 +08:00
|
|
|
thermostat = rustPlatform.buildRustPackage {
|
2022-01-19 11:13:47 +08:00
|
|
|
name = "thermostat";
|
|
|
|
version = "0.0.0";
|
|
|
|
|
|
|
|
src = self;
|
|
|
|
cargoLock = {
|
|
|
|
lockFile = ./Cargo.lock;
|
|
|
|
outputHashes = {
|
2022-01-25 12:49:49 +08:00
|
|
|
"stm32-eth-0.2.0" = "sha256-48RpZgagUqgVeKm7GXdk3Oo0v19ScF9Uby0nTFlve2o=";
|
2022-01-19 11:13:47 +08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgs.llvm ];
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
cargo build --release --bin thermostat
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out $out/nix-support
|
|
|
|
cp target/thumbv7em-none-eabihf/release/thermostat $out/thermostat.elf
|
|
|
|
echo file binary-dist $out/thermostat.elf >> $out/nix-support/hydra-build-products
|
|
|
|
llvm-objcopy -O binary target/thumbv7em-none-eabihf/release/thermostat $out/thermostat.bin
|
|
|
|
echo file binary-dist $out/thermostat.bin >> $out/nix-support/hydra-build-products
|
|
|
|
'';
|
|
|
|
|
|
|
|
dontFixup = true;
|
2024-08-06 13:37:39 +08:00
|
|
|
auditable = false;
|
2022-01-19 11:13:47 +08:00
|
|
|
};
|
|
|
|
in {
|
|
|
|
packages.x86_64-linux = {
|
|
|
|
inherit thermostat;
|
2024-06-27 16:49:00 +08:00
|
|
|
default = thermostat;
|
2022-01-19 11:13:47 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
hydraJobs = {
|
|
|
|
inherit thermostat;
|
|
|
|
};
|
|
|
|
|
2024-08-06 11:05:12 +08:00
|
|
|
devShells.x86_64-linux.default = pkgs.mkShellNoCC {
|
2022-01-19 11:13:47 +08:00
|
|
|
name = "thermostat-dev-shell";
|
2024-08-06 11:05:12 +08:00
|
|
|
packages = with pkgs; [
|
2023-09-20 11:23:37 +08:00
|
|
|
rust openocd dfu-util
|
2022-01-19 11:13:47 +08:00
|
|
|
] ++ (with python3Packages; [
|
|
|
|
numpy matplotlib
|
|
|
|
]);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|