lib/types: Set deprecationMessage for types.string

wip/yesman
Silvan Mosberger 4 years ago
parent 14095f8f48
commit 2bed3b2ad7
No known key found for this signature in database
GPG Key ID: E8F1E9EAD284E17D
  1. 6
      lib/types.nix

@ -225,8 +225,10 @@ rec {
# Deprecated; should not be used because it quietly concatenates
# strings, which is usually not what you want.
string = warn "types.string is deprecated because it quietly concatenates strings"
(separatedString "");
string = separatedString "" // {
name = "string";
deprecationMessage = "See https://github.com/NixOS/nixpkgs/pull/66346 for better alternative types.";
};
attrs = mkOptionType {
name = "attrs";

Loading…
Cancel
Save