chore: fix Nix build

This commit is contained in:
Sebastian Ullrich 2025-04-21 16:57:00 +02:00 committed by Joachim Breitner
parent e6771d7524
commit f86b192ec2

View file

@ -194,7 +194,7 @@ with builtins; let
modCandidates = mapAttrs (mod: header:
let
deps = if header.errors == []
then map (m: m.module) header.imports
then map (m: m.module) header.result.imports
else abort "errors while parsing imports of ${mod}:\n${lib.concatStringsSep "\n" header.errors}";
in mkMod mod (map (dep: if modDepsMap ? ${dep} then modCandidates.${dep} else externalModMap.${dep}) deps)) modDepsMap;
expandGlob = g: