build: use str instead of string

string was deprecated in nixpkgs
This commit is contained in:
Evgeny Kurnevsky 2023-08-12 13:19:17 +03:00 committed by Alexander Sosedkin
parent b324ef2824
commit 9c190d19cd

View file

@ -1,4 +1,4 @@
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
# Copyright (c) 2019-2023, see AUTHORS. Licensed under MIT License, see LICENSE.
{ config, lib, pkgs, ... }:
@ -37,7 +37,7 @@ with lib;
};
extraProotOptions = mkOption {
type = types.listOf types.string;
type = types.listOf types.str;
default = [ ];
description = "Extra options passed to proot, e.g., extra bind mounts.";
};