flake: add an empty nixvimConfiguration to the legacyPackages output

This commit is contained in:
Matt Sturgeon 2024-09-15 18:02:54 +01:00
parent ccc2469e4f
commit fcb782cd9c
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
4 changed files with 20 additions and 17 deletions

View file

@ -7,15 +7,11 @@
system,
helpers,
makeNixvimWithModule,
self',
...
}:
let
evaluatedNixvim = helpers.modules.evalNixvim {
extraSpecialArgs = {
defaultPkgs = pkgs;
};
check = false;
};
inherit (self'.legacyPackages) nixvimConfiguration;
in
{
checks = {
@ -50,11 +46,11 @@
maintainers = import ../tests/maintainers.nix { inherit pkgs; };
plugins-by-name = pkgs.callPackage ../tests/plugins-by-name.nix { inherit evaluatedNixvim; };
plugins-by-name = pkgs.callPackage ../tests/plugins-by-name.nix { inherit nixvimConfiguration; };
generated = pkgs.callPackage ../tests/generated.nix { };
package-options = pkgs.callPackage ../tests/package-options.nix { inherit evaluatedNixvim; };
package-options = pkgs.callPackage ../tests/package-options.nix { inherit nixvimConfiguration; };
} // import ../tests { inherit pkgs pkgsUnfree helpers; };
};
}