mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
lib.strings.isStorePath: Use isSimpleCoercibleToString
Expecting no change in behavior.
This commit is contained in:
parent
67cfc7a8f6
commit
2b4a8db032
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user