opencomposite: add meta.platforms (#357198)
[NixPkgs.git] / lib / tests / modules / shorthand-meta.nix
blob8c9619e18a2ab8dd94f93ef6926f129bde8529a6
1 { lib, ... }:
2 let
3   inherit (lib) types mkOption;
4 in
6   imports = [
7     ({ config, ... }: {
8       options = {
9         meta.foo = mkOption {
10           type = types.listOf types.str;
11         };
12         result = mkOption { default = lib.concatStringsSep " " config.meta.foo; };
13       };
14     })
15     {
16       meta.foo = [ "one" "two" ];
17     }
18   ];