From bb4521668fe253f83c3039a3d436b44a3c0737b9 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 ];