From 34cc0a161adfaaf88226042bb9c0e54a750fe7d1 Mon Sep 17 00:00:00 2001 From: Hermes Date: Sat, 6 Jun 2026 10:17:04 -0400 Subject: [PATCH] fix: override meshtastic to skip runtime deps check (tabulate 0.10.0 incompatibility) --- overlays/reticulum.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/overlays/reticulum.nix b/overlays/reticulum.nix index e646559..e2052d7 100644 --- a/overlays/reticulum.nix +++ b/overlays/reticulum.nix @@ -78,4 +78,9 @@ in { platforms = platforms.linux; }; }; + + # meshtastic requires tabulate < 0.10.0 but nixpkgs has 0.10.0 + meshtastic = prev.meshtastic.overrideAttrs (old: { + dontCheckRuntimeDeps = true; + }); }