lib.types.string: Use lib.warn instead of deprecationMessage
This will cause a poorer error message without option location information, but it will catch all uses of its use.
This commit is contained in:
@@ -436,10 +436,12 @@ rec {
|
|||||||
|
|
||||||
# Deprecated; should not be used because it quietly concatenates
|
# Deprecated; should not be used because it quietly concatenates
|
||||||
# strings, which is usually not what you want.
|
# strings, which is usually not what you want.
|
||||||
string = separatedString "" // {
|
# We use a lib.warn because `deprecationMessage` doesn't trigger in nested types such as `attrsOf string`
|
||||||
name = "string";
|
string = lib.warn
|
||||||
deprecationMessage = "See https://github.com/NixOS/nixpkgs/pull/66346 for better alternative types.";
|
"The type `types.string` is deprecated. See https://github.com/NixOS/nixpkgs/pull/66346 for better alternative types."
|
||||||
};
|
(separatedString "" // {
|
||||||
|
name = "string";
|
||||||
|
});
|
||||||
|
|
||||||
passwdEntry = entryType: addCheck entryType (str: !(hasInfix ":" str || hasInfix "\n" str)) // {
|
passwdEntry = entryType: addCheck entryType (str: !(hasInfix ":" str || hasInfix "\n" str)) // {
|
||||||
name = "passwdEntry ${entryType.name}";
|
name = "passwdEntry ${entryType.name}";
|
||||||
|
|||||||
Reference in New Issue
Block a user