Merge pull request #298967 from vbgl/ocaml-5.2.0
[NixPkgs.git] / lib / tests / modules / declare-enable.nix
blobebee243c756854bc52d33cbbebc32a2648a58323
1 { lib, ... }:
4   options = {
5     enable = lib.mkOption {
6       default = false;
7       example = true;
8       type = lib.types.bool;
9       description = ''
10         Some descriptive text
11       '';
12     };
13   };