opencomposite: add meta.platforms (#357198)
[NixPkgs.git] / lib / tests / modules / declare-coerced-value.nix
blob76b12ad53f00c21713ff29d811c8dd8f3c9b2fb9
1 { lib, ... }:
4   options = {
5     value = lib.mkOption {
6       default = 42;
7       type = lib.types.coercedTo lib.types.int builtins.toString lib.types.str;
8     };
9   };