lib.strings.isStorePath: Use isSimpleCoercibleToString

Expecting no change in behavior.
This commit is contained in:
Robert Hensing 2022-12-28 23:17:29 +01:00
parent 67cfc7a8f6
commit 2b4a8db032

View file

@ -829,7 +829,7 @@ rec {
=> false
*/
isStorePath = x:
if !(isList x) && isCoercibleToString x then
if isSimpleCoercibleToString x then
let str = toString x; in
substring 0 1 str == "/"
&& dirOf str == storeDir