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;
|
2022-01-19 11:13:47 +08:00
|
|
|
inputs.mozilla-overlay = { url = github:mozilla/nixpkgs-mozilla; flake = false; };
|
|
|
|
|
|
|
|
outputs = { self, nixpkgs, mozilla-overlay }:
|
|
|
|
let
|
|
|
|
pkgs = import nixpkgs { system = "x86_64-linux"; overlays = [ (import mozilla-overlay) ]; };
|
|
|
|
rustManifest = pkgs.fetchurl {
|
2024-01-16 15:22:11 +08:00
|
|
|
url = "https://static.rust-lang.org/dist/2022-12-15/channel-rust-stable.toml";
|
|
|
|
hash = "sha256-S7epLlflwt0d1GZP44u5Xosgf6dRrmr8xxC+Ml2Pq7c=";
|
2022-01-19 11:13:47 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
targets = [
|
|
|
|
"thumbv7em-none-eabihf"
|
|
|
|
];
|
|
|
|
rustChannelOfTargets = _channel: _date: targets:
|
|
|
|
(pkgs.lib.rustLib.fromManifestFile rustManifest {
|
|
|
|
inherit (pkgs) stdenv lib fetchurl patchelf;
|
|
|
|
}).rust.override {
|
|
|
|
inherit targets;
|
|
|
|
extensions = ["rust-src"];
|
|
|
|
};
|
2024-01-16 15:22:11 +08:00
|
|
|
rust = rustChannelOfTargets "stable" null targets;
|
2022-01-19 11:13:47 +08:00
|
|
|
rustPlatform = pkgs.recurseIntoAttrs (pkgs.makeRustPlatform {
|
|
|
|
rustc = rust;
|
|
|
|
cargo = rust;
|
|
|
|
});
|
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";
|
2023-06-27 17:34:39 +08:00
|
|
|
version = "0.27.1";
|
|
|
|
format = "pyproject";
|
|
|
|
src = pkgs.fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "sha256-jcdo/R7l3hBEx8MF7M8tOdJNh4A+pxGJ1AJPtHX0mF8=";
|
2023-06-26 10:20:48 +08:00
|
|
|
};
|
2023-06-27 17:34:39 +08:00
|
|
|
buildInputs = [ pkgs.python3Packages.poetry-core ];
|
2023-06-26 10:20:48 +08:00
|
|
|
propagatedBuildInputs = [ pkgs.python3Packages.pyqt6 ];
|
|
|
|
};
|
2023-06-27 17:34:39 +08:00
|
|
|
|
|
|
|
thermostat_gui = pkgs.python3Packages.buildPythonPackage {
|
2023-06-26 10:20:48 +08:00
|
|
|
pname = "thermostat_gui";
|
|
|
|
version = "0.0.0";
|
2023-06-27 17:34:39 +08:00
|
|
|
src = "${self}/pytec";
|
2023-06-26 10:20:48 +08:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgs.qt6.wrapQtAppsHook ];
|
2023-06-27 17:34:39 +08:00
|
|
|
propagatedBuildInputs = [ pkgs.qt6.qtbase ] ++ (with pkgs.python3Packages; [ pyqtgraph pyqt6 qasync ]);
|
2023-06-26 10:20:48 +08:00
|
|
|
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
postFixup = ''
|
2023-06-27 17:34:39 +08:00
|
|
|
wrapQtApp "$out/bin/tec_qt"
|
2023-06-26 10:20:48 +08:00
|
|
|
'';
|
|
|
|
};
|
2022-01-19 11:13:47 +08:00
|
|
|
in {
|
|
|
|
packages.x86_64-linux = {
|
2023-06-27 17:34:39 +08:00
|
|
|
inherit thermostat thermostat_gui;
|
|
|
|
};
|
|
|
|
|
|
|
|
apps.x86_64-linux.thermostat_gui = {
|
|
|
|
type = "app";
|
|
|
|
program = "${self.packages.x86_64-linux.thermostat_gui}/bin/tec_qt";
|
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;
|
|
|
|
};
|
|
|
|
}
|