Merge pull request #298967 from vbgl/ocaml-5.2.0
[NixPkgs.git] / lib / tests / modules / functionTo / list-order.nix
blob77a1a43a84f03a069ce12f17c75e171d41312545
2 { lib, config, ... }:
3 let
4   inherit (lib) types;
5 in {
6   options = {
7     fun = lib.mkOption {
8       type = types.functionTo (types.listOf types.str);
9     };
11     result = lib.mkOption {
12       type = types.str;
13       default = toString (config.fun {
14         a = "a";
15         b = "b";
16         c = "c";
17       });
18     };
19   };
21   config.fun = lib.mkMerge [
22     (input: lib.mkAfter [ input.a ])
23     (input: [ input.b ])
24   ];