summary refs log tree commit diff
path: root/pkgs/test/mkOption/declare.nix
blob: 9e89a1c096da53800c7f734598e6d4f360cae465 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# sets of small configurations:
# Each configuration
rec {
  # has 2 arguments pkgs and this.
  configA = pkgs: this: {
    # Can depends on other configuration
    require = configB;

    # Defines new options
    optionA = pkgs.lib.mkOption {
      # With default values
      default = false;
      # And merging functions.
      merge = pkgs.lib.mergeEnableOption;
    };

    # Add a new definition to other options.
    optionB = this.optionA;
  };

  # Can be used for option header.
  configB = pkgs: this: {
    # Can depends on more than one configuration.
    require = [ configC configD ];

    optionB = pkgs.lib.mkOption {
      default = false;
    };

    # Is not obliged to define other options.
  };

  configC = pkgs: this: {
    require = [ configA ];

    optionC = pkgs.lib.mkOption {
      default = false;
    };

    # Use the default value if it is not overwritten.
    optionA = this.optionC;
  };

  # Can also be used as option configuration only.
  # without any arguments (backward compatibility)
  configD = {
    # Is not forced to specify the require attribute.

    # Is not force to make new options.
    optionA = true;
    optionD = false;
  };
}