about summary refs log tree commit diff
path: root/pkgs/development/libraries/cmark/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/cmark/default.nix')
-rw-r--r--pkgs/development/libraries/cmark/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/cmark/default.nix b/pkgs/development/libraries/cmark/default.nix
index a118ecf1adda..83407c64384d 100644
--- a/pkgs/development/libraries/cmark/default.nix
+++ b/pkgs/development/libraries/cmark/default.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
   doCheck = true;
 
   preCheck = let
-    lib_path = if stdenv.isDarwin then "DYLD_FALLBACK_LIBRARY_PATH" else "LD_LIBRARY_PATH";
+    lib_path = if stdenv.hostPlatform.isDarwin then "DYLD_FALLBACK_LIBRARY_PATH" else "LD_LIBRARY_PATH";
   in ''
     export ${lib_path}=$(readlink -f ./src)
   '';