opam: 2.2.0 → 2.3.0 (#359044)
[NixPkgs.git] / lib / tests / modules / declare-either.nix
blob5a0fa978a1381c8fb1d484c73178d4c66389a86a
1 { lib, ... }: {
2   options.value = lib.mkOption {
3     type = lib.types.either lib.types.int lib.types.str;
4   };