Merge pull request #298967 from vbgl/ocaml-5.2.0
[NixPkgs.git] / lib / tests / modules / declare-attrsOf.nix
blobd19964064b219d1f8b1320e4882a793d15c25b32
1 { lib, ... }:
2 let
3   deathtrapArgs = lib.mapAttrs
4     (k: _: throw "The module system is too strict, accessing an unused option's ${k} mkOption-attribute.")
5     (lib.functionArgs lib.mkOption);
6 in
8   options.value = lib.mkOption {
9     type = lib.types.attrsOf lib.types.str;
10     default = {};
11   };
12   options.testing-laziness-so-don't-read-me = lib.mkOption deathtrapArgs;