1
1
mirror of https://github.com/divnix/digga.git synced 2024-10-05 19:17:59 +03:00
digga/deprecated.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
357 B
Nix
Raw Normal View History

2022-11-08 17:06:32 +03:00
{
lib,
importers,
}:
2021-07-21 02:24:39 +03:00
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
''
2022-11-08 17:06:32 +03:00
importers.importExportableModules;
2021-07-21 02:24:39 +03:00
}