3 krebs.build += {deploy,deps}

This commit is contained in:
tv 2015-07-27 02:55:06 +02:00
parent ba9bb73817
commit a952f015a8

View File

@ -22,6 +22,24 @@ let
build = mkOption {
type = types.submodule {
options = {
deploy = mkOption {
type = with types; nullOr str;
default = null;
};
deps = mkOption {
type = with types; attrsOf (submodule {
options = {
url = mkOption {
type = either str path;
};
rev = mkOption {
type = nullOr str;
default = null;
};
};
});
default = {};
};
host = mkOption {
type = types.host;
};