flake.nix: use nativeBuildInputs instead of buildInputs

This commit is contained in:
2025-08-04 21:45:23 +02:00
parent a3e375a929
commit bb4521668f

View File

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