2022-01-19 11:13:47 +08:00
|
|
|
{
|
|
|
|
description = "Firmware for the Sinara 8451 Thermostat";
|
|
|
|
|
2023-07-26 13:40:26 +08:00
|
|
|
inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-23.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;
|
|
|
|
};
|
2023-06-26 10:20:48 +08:00
|
|
|
|
|
|
|
qasync = pkgs.python3Packages.buildPythonPackage rec {
|
|
|
|
pname = "qasync";
|
|
|
|
version = "0.24.0";
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "CabbageDevelopment";
|
|
|
|
repo = "qasync";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-ls5F+VntXXa3n+dULaYWK9sAmwly1nk/5+RGWLrcf2Y=";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [ pkgs.python3Packages.pyqt6 ];
|
|
|
|
nativeCheckInputs = [ pkgs.python3Packages.pytest ];
|
|
|
|
checkPhase = ''
|
|
|
|
pytest -k 'test_qthreadexec.py' # the others cause the test execution to be aborted, I think because of asyncio
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
thermostat_gui = pkgs.python3Packages.buildPythonPackage rec {
|
|
|
|
pname = "thermostat_gui";
|
|
|
|
version = "0.0.0";
|
|
|
|
src = self;
|
|
|
|
|
|
|
|
preBuild =
|
|
|
|
''
|
|
|
|
export VERSIONEER_OVERRIDE=${version}
|
|
|
|
export VERSIONEER_REV=v0.0.0
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgs.qt6.wrapQtAppsHook ];
|
|
|
|
propagatedBuildInputs = (with pkgs.python3Packages; [ pyqtgraph pyqt6 qasync]);
|
|
|
|
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
postFixup = ''
|
|
|
|
ls -al $out/
|
|
|
|
wrapQtApp "$out/pytec/tec_qt"
|
|
|
|
'';
|
|
|
|
};
|
2022-01-19 11:13:47 +08:00
|
|
|
in {
|
|
|
|
packages.x86_64-linux = {
|
2023-06-26 10:20:48 +08:00
|
|
|
inherit thermostat qasync thermostat_gui;
|
2022-01-19 11:13:47 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
hydraJobs = {
|
|
|
|
inherit thermostat;
|
|
|
|
};
|
|
|
|
|
|
|
|
devShell.x86_64-linux = pkgs.mkShell {
|
|
|
|
name = "thermostat-dev-shell";
|
|
|
|
buildInputs = with pkgs; [
|
2023-09-20 11:23:37 +08:00
|
|
|
rust openocd dfu-util
|
2022-01-19 11:13:47 +08:00
|
|
|
] ++ (with python3Packages; [
|
2023-06-26 10:20:48 +08:00
|
|
|
numpy matplotlib pyqtgraph setuptools pyqt6 qasync
|
2022-01-19 11:13:47 +08:00
|
|
|
]);
|
|
|
|
};
|
|
|
|
defaultPackage.x86_64-linux = thermostat;
|
|
|
|
};
|
|
|
|
}
|