opencomposite: add meta.platforms (#357198)
[NixPkgs.git] / lib / tests / modules / doRename-warnings.nix
blob6f0f1e87e3aa5a198ff87106a79e6b2cf14cdfdf
1 { lib, config, ... }: {
2   imports = [
3     (lib.doRename { from = ["a" "b"]; to = ["c" "d" "e"]; warn = true; use = x: x; visible = true; })
4   ];
5   options = {
6     warnings = lib.mkOption { type = lib.types.listOf lib.types.str; };
7     c.d.e = lib.mkOption {};
8     result = lib.mkOption {};
9   };
10   config = {
11     a.b = 1234;
12     result = lib.concatStringsSep "%" config.warnings;
13   };