Change deprecated types.string to types.str
This commit is contained in:
parent
520c80d927
commit
0f0f976eab
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ in
|
|||
description = "A derivation that produces a docker-compose.yaml file for this composition.";
|
||||
};
|
||||
build.dockerComposeYamlText = lib.mkOption {
|
||||
type = lib.types.string;
|
||||
type = lib.types.str;
|
||||
description = "The text of build.dockerComposeYaml.";
|
||||
};
|
||||
docker-compose.raw = lib.mkOption {
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
};
|
||||
|
||||
host.nixStorePrefix = lib.mkOption {
|
||||
type = lib.types.string;
|
||||
type = lib.types.str;
|
||||
default = "";
|
||||
example = "/mnt/foo";
|
||||
description = ''
|
||||
|
|
Loading…
Reference in a new issue