about summary refs log tree commit diff
path: root/lib/strings.nix
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2022-12-31 00:49:04 +0100
committerRobert Hensing <robert@roberthensing.nl>2022-12-31 01:33:47 +0100
commit23c25d5231856e8cfd60049582c865da97bc5d44 (patch)
treef1698ac196e1f2d9fe31e16cc3e763c5ff044585 /lib/strings.nix
parent834f0d660a79e8f08c108237d76fc1b42024289b (diff)
lib.strings.isConvertibleWithToString: Refactor to reuse isStringLike
Diffstat (limited to 'lib/strings.nix')
-rw-r--r--lib/strings.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/strings.nix b/lib/strings.nix
index 89574bc8367c2..db89f60c480ce 100644
--- a/lib/strings.nix
+++ b/lib/strings.nix
@@ -810,10 +810,9 @@ rec {
      null, bool, list of similarly coercible values.
   */
   isConvertibleWithToString = x:
-    elem (typeOf x) [ "path" "string" "null" "int" "float" "bool" ] ||
-    (isList x && lib.all isConvertibleWithToString x) ||
-    x ? outPath ||
-    x ? __toString;
+    isStringLike x ||
+    elem (typeOf x) [ "null" "int" "float" "bool" ] ||
+    (isList x && lib.all isConvertibleWithToString x);
 
   /* Check whether a value can be coerced to a string.
      The value must be a string, path, or attribute set.