opencomposite: add meta.platforms (#357198)
[NixPkgs.git] / lib / tests / modules / declare-variants.nix
blob3ed6fa689e21ed4c2ecc1d22c0960ceb86c88c77
1 { lib, moduleType, ... }:
2 let inherit (lib) mkOption types;
3 in
5   options.variants = mkOption {
6     type = types.lazyAttrsOf moduleType;
7     default = {};
8   };