1
1
mirror of https://github.com/divnix/digga.git synced 2024-07-07 03:46:20 +03:00
digga/deprecated.nix
2022-11-12 06:02:28 -05:00

18 lines
357 B
Nix

{
lib,
importers,
}:
lib.warn ''
You are accessing a deprecated item of the digga lib.
Please update timely, it will be remove soon.
''
rec {
importModules =
lib.warn ''
Deprecated Function: lib.importModules.
Use lib.importExportableModules instead to set `exportedModules` option
''
importers.importExportableModules;
}