2009-09-10 15:53:31 +02:00
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2009-04-29 01:05:03 +02:00
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
2009-09-10 15:53:31 +02:00
|
|
|
|
failed = map (x: x.message) (filter (x: !x.assertion) config.assertions);
|
|
|
|
|
|
2013-10-23 18:21:15 +02:00
|
|
|
|
showWarnings = res: fold (w: x: builtins.trace "[1;31mwarning: ${w}[0m" x) res config.warnings;
|
|
|
|
|
|
2009-09-10 15:53:31 +02:00
|
|
|
|
in
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-04-29 01:05:03 +02:00
|
|
|
|
{
|
|
|
|
|
|
2009-09-10 15:53:31 +02:00
|
|
|
|
options = {
|
|
|
|
|
|
|
|
|
|
assertions = mkOption {
|
2013-10-28 16:14:15 +01:00
|
|
|
|
type = types.listOf types.unspecified;
|
2013-10-23 16:59:33 +02:00
|
|
|
|
internal = true;
|
2009-09-10 15:53:31 +02:00
|
|
|
|
default = [];
|
2012-04-01 12:54:06 +02:00
|
|
|
|
example = [ { assertion = false; message = "you can't enable this for that reason"; } ];
|
2009-09-10 15:53:31 +02:00
|
|
|
|
description = ''
|
|
|
|
|
This option allows modules to express conditions that must
|
|
|
|
|
hold for the evaluation of the system configuration to
|
|
|
|
|
succeed, along with associated error messages for the user.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2013-10-23 18:21:15 +02:00
|
|
|
|
warnings = mkOption {
|
|
|
|
|
internal = true;
|
|
|
|
|
default = [];
|
|
|
|
|
type = types.listOf types.string;
|
|
|
|
|
example = [ "The `foo' service is deprecated and will go away soon!" ];
|
|
|
|
|
description = ''
|
|
|
|
|
This option allows modules to show warnings to users during
|
|
|
|
|
the evaluation of the system configuration.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-04-29 01:05:03 +02:00
|
|
|
|
};
|
|
|
|
|
|
2009-09-10 15:53:31 +02:00
|
|
|
|
config = {
|
|
|
|
|
|
2013-10-23 18:21:15 +02:00
|
|
|
|
# This option is evaluated always. Thus the assertions are checked
|
|
|
|
|
# as well. Hacky!
|
|
|
|
|
environment.systemPackages = showWarnings (
|
2009-09-10 15:53:31 +02:00
|
|
|
|
if [] == failed then []
|
2013-10-23 18:21:15 +02:00
|
|
|
|
else throw "\nFailed assertions:\n${concatStringsSep "\n" (map (x: "- ${x}") failed)}");
|
2009-09-10 15:53:31 +02:00
|
|
|
|
|
2009-04-29 01:05:03 +02:00
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-04-29 01:05:03 +02:00
|
|
|
|
}
|