ci: fix extract-maintainers, pass options to eval

Module eval was silently failing check... include options so that eval
works again with modules that require argument.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman 2026-01-25 15:56:47 -06:00
parent 63ecc7d495
commit 950704d781

View file

@ -4,6 +4,7 @@
}:
let
config = { };
options = { };
releaseInfo = lib.importJSON ../../release.json;
isNixFile = lib.hasSuffix ".nix" file;
@ -44,7 +45,7 @@ let
fileContent { inherit lib; }
else
fileContent {
inherit lib config;
inherit lib config options;
pkgs = null;
}
else