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:
parent
63ecc7d495
commit
950704d781
1 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue