mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-09 03:56:06 +01:00
build: use str instead of string
string was deprecated in nixpkgs
This commit is contained in:
parent
b324ef2824
commit
9c190d19cd
1 changed files with 2 additions and 2 deletions
|
|
@ -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, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
|
@ -37,7 +37,7 @@ with lib;
|
||||||
};
|
};
|
||||||
|
|
||||||
extraProotOptions = mkOption {
|
extraProotOptions = mkOption {
|
||||||
type = types.listOf types.string;
|
type = types.listOf types.str;
|
||||||
default = [ ];
|
default = [ ];
|
||||||
description = "Extra options passed to proot, e.g., extra bind mounts.";
|
description = "Extra options passed to proot, e.g., extra bind mounts.";
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue