From 5e42de5ed9a9c8eae8960042c04805a1e5e4c37d Mon Sep 17 00:00:00 2001 From: mwojcik Date: Tue, 18 Jan 2022 11:27:57 +0800 Subject: [PATCH] flake: removed unnecessary gcc --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index e0a7c9a..a55c902 100644 --- a/flake.nix +++ b/flake.nix @@ -41,6 +41,7 @@ }; nativeBuildInputs = [ pkgs.llvm ]; + buildPhase = '' cargo build --release --bin thermostat ''; @@ -69,7 +70,7 @@ buildInputs = with pkgs; [ rustPlatform.rust.rustc rustPlatform.rust.cargo - gcc openocd dfu-util + openocd dfu-util ] ++ (with python3Packages; [ numpy matplotlib ]);