fix: override meshtastic to skip runtime deps check (tabulate 0.10.0 incompatibility)

This commit is contained in:
2026-06-06 10:17:04 -04:00
parent a51e095717
commit 34cc0a161a

View File

@@ -78,4 +78,9 @@ in {
platforms = platforms.linux; platforms = platforms.linux;
}; };
}; };
# meshtastic requires tabulate < 0.10.0 but nixpkgs has 0.10.0
meshtastic = prev.meshtastic.overrideAttrs (old: {
dontCheckRuntimeDeps = true;
});
} }