From 78012f6fdd13a17b1b7a5e23bb1ca55119a63ddc Mon Sep 17 00:00:00 2001 From: atse Date: Wed, 20 Sep 2023 11:23:37 +0800 Subject: [PATCH] flake: Use rust from manifest, not from pkgs Fix the rustPlatform deprecation warnings properly. --- flake.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 612faf0..40ab983 100644 --- a/flake.nix +++ b/flake.nix @@ -67,8 +67,7 @@ devShell.x86_64-linux = pkgs.mkShell { name = "thermostat-dev-shell"; buildInputs = with pkgs; [ - rustc cargo - openocd dfu-util + rust openocd dfu-util ] ++ (with python3Packages; [ numpy matplotlib ]);