From 9c190d19cd94b4a7abbc1b6ea294c28e142fecb9 Mon Sep 17 00:00:00 2001 From: Evgeny Kurnevsky Date: Sat, 12 Aug 2023 13:19:17 +0300 Subject: [PATCH] build: use str instead of string string was deprecated in nixpkgs --- modules/build/config.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/build/config.nix b/modules/build/config.nix index 276ec85..bb3432d 100644 --- a/modules/build/config.nix +++ b/modules/build/config.nix @@ -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."; };