mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
14 lines
367 B
Nix
14 lines
367 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
...
|
|
}: let
|
|
typesDag = import ./dag.nix {inherit lib;};
|
|
typesPlugin = import ./plugins.nix {inherit inputs lib;};
|
|
typesLanguage = import ./languages.nix {inherit lib;};
|
|
in {
|
|
inherit (typesDag) dagOf;
|
|
inherit (typesPlugin) pluginsOpt extraPluginType mkPluginSetupOption luaInline;
|
|
inherit (typesLanguage) diagnostics mkGrammarOption;
|
|
}
|