summary refs log tree commit diff
path: root/lib/types.nix
diff options
context:
space:
mode:
authorSilvan Mosberger <contact@infinisil.com>2020-01-07 16:43:50 +0100
committerGitHub <noreply@github.com>2020-01-07 16:43:50 +0100
commit65872f407e75bca68620d4ed33e41bbcf264579c (patch)
tree1b2027d69f9ff7775d79144befacf8a70a4e64a4 /lib/types.nix
parent09e3b355a9fe4a3cf9d170651edb8bec2ac96e6f (diff)
parentd7a109b59f18756fa36a6f6439f11a9eb07e8d86 (diff)
downloadnixpkgs-65872f407e75bca68620d4ed33e41bbcf264579c.tar
nixpkgs-65872f407e75bca68620d4ed33e41bbcf264579c.tar.gz
nixpkgs-65872f407e75bca68620d4ed33e41bbcf264579c.tar.bz2
nixpkgs-65872f407e75bca68620d4ed33e41bbcf264579c.tar.lz
nixpkgs-65872f407e75bca68620d4ed33e41bbcf264579c.tar.xz
nixpkgs-65872f407e75bca68620d4ed33e41bbcf264579c.tar.zst
nixpkgs-65872f407e75bca68620d4ed33e41bbcf264579c.zip
Merge pull request #77133 from Infinisil/fix-path-check
lib/types: Fix path type check
Diffstat (limited to 'lib/types.nix')
-rw-r--r--lib/types.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/types.nix b/lib/types.nix
index bb1b17e6bee..4872a676657 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -242,8 +242,7 @@ rec {
 
     path = mkOptionType {
       name = "path";
-      # Hacky: there is no ‘isPath’ primop.
-      check = x: builtins.substring 0 1 (toString x) == "/";
+      check = x: isCoercibleToString x && builtins.substring 0 1 (toString x) == "/";
       merge = mergeEqualOption;
     };