From 3e607f7d121bdaf2ee1f0af9ea7c117dcef64e90 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 24 Sep 2020 11:12:19 +0800 Subject: [PATCH] stm32: add humpback-dds --- hydra/stm32.nix | 3 ++- stm32/default.nix | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/hydra/stm32.nix b/hydra/stm32.nix index 5343cca..1cf759e 100644 --- a/hydra/stm32.nix +++ b/hydra/stm32.nix @@ -20,7 +20,8 @@ "mozillaOverlay": { "type": "git", "value": "git://github.com/mozilla/nixpkgs-mozilla.git", "emailresponsible": false }, "nixScripts": { "type": "git", "value": "https://git.m-labs.hk/M-Labs/nix-scripts.git", "emailresponsible": false }, "stabilizerSrc": { "type": "git", "value": "git://github.com/quartiq/stabilizer.git", "emailresponsible": false }, - "thermostatSrc": { "type": "git", "value": "https://git.m-labs.hk/M-Labs/thermostat.git", "emailresponsible": false } + "thermostatSrc": { "type": "git", "value": "https://git.m-labs.hk/M-Labs/thermostat.git", "emailresponsible": false }, + "humpbackDdsSrc": { "type": "git", "value": "https://git.m-labs.hk/M-Labs/humpback-dds.git", "emailresponsible": false } } } } diff --git a/stm32/default.nix b/stm32/default.nix index fab28e6..165b45e 100644 --- a/stm32/default.nix +++ b/stm32/default.nix @@ -55,4 +55,8 @@ in cargo test --target=${pkgs.rust.toRustTarget pkgs.stdenv.targetPlatform} ''; }; + humpback-dds = buildStm32Firmware { + name = "humpback-dds"; + src = ; + }; }