From 0547c2f03dfa1f71a2622fa371c3501f9bd0557c Mon Sep 17 00:00:00 2001 From: h7x4 Date: Mon, 4 Aug 2025 21:45:23 +0200 Subject: [PATCH] flake.nix: use `nativeBuildInputs` instead of `buildInputs` --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index eb38362..3d9e310 100644 --- a/flake.nix +++ b/flake.nix @@ -27,7 +27,7 @@ in { devShells = forAllSystems (system: pkgs: { default = pkgs.mkShell { - buildInputs = with pkgs; [ + nativeBuildInputs = with pkgs; [ flutter dart ];