opencomposite: add meta.platforms (#357198)
[NixPkgs.git] / lib / tests / modules / declare-int-between-value.nix
blob8b2624cc5d65971e0766d8b63c926d3c59a679f4
1 { lib, ... }:
4   options = {
5     value = lib.mkOption {
6       type = lib.types.ints.between (-21) 43;
7     };
8   };