opencomposite: add meta.platforms (#357198)
[NixPkgs.git] / lib / tests / modules / error-mkOption-in-config.nix
blob2d78cd8db8baca3af81cbab56046cb013d866965
1 { lib, ... }:
2 let
3   inherit (lib) mkOption;
4 in
6   wrong1 = mkOption {
7   };
8   # This is not actually reported separately, so could be omitted from the test
9   # but it makes the example more realistic.
10   # Making it parse this _config_ as options would too risky. What if it's not
11   # options but other values, that abort, throw, diverge, etc?
12   nest.wrong2 = mkOption {
13   };