flake.nix: use nativeBuildInputs instead of buildInputs

This commit is contained in:
2025-08-04 21:45:23 +02:00
parent 1130ae2974
commit 00ec3c43fc

View File

@@ -27,7 +27,7 @@
in { in {
devShells = forAllSystems (system: pkgs: { devShells = forAllSystems (system: pkgs: {
default = pkgs.mkShell { default = pkgs.mkShell {
buildInputs = with pkgs; [ nativeBuildInputs = with pkgs; [
flutter flutter
dart dart
]; ];