nixpkgs/lib/tests/modules/doRename-warnings.nix

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

29 lines
478 B
Nix
Raw Normal View History

{ lib, config, ... }:
{
2022-11-03 13:11:04 +01:00
imports = [
(lib.doRename {
from = [
"a"
"b"
];
to = [
"c"
"d"
"e"
];
warn = true;
use = x: x;
visible = true;
})
2022-11-03 13:11:04 +01:00
];
options = {
warnings = lib.mkOption { type = lib.types.listOf lib.types.str; };
c.d.e = lib.mkOption { };
result = lib.mkOption { };
2022-11-03 13:11:04 +01:00
};
config = {
a.b = 1234;
result = lib.concatStringsSep "%" config.warnings;
};
}