about summary refs log tree commit diff
path: root/pkgs/servers/nosql/mongodb/5.0.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/nosql/mongodb/5.0.nix')
-rw-r--r--pkgs/servers/nosql/mongodb/5.0.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/nosql/mongodb/5.0.nix b/pkgs/servers/nosql/mongodb/5.0.nix
index f69ad97f8ac6..84c0991515b0 100644
--- a/pkgs/servers/nosql/mongodb/5.0.nix
+++ b/pkgs/servers/nosql/mongodb/5.0.nix
@@ -8,13 +8,13 @@ let
   buildMongoDB = callPackage ./mongodb.nix {
     inherit sasl boost Security CoreFoundation cctools;
   };
-  variants = if stdenv.isLinux then
+  variants = if stdenv.hostPlatform.isLinux then
     {
       version = "5.0.29";
       sha256 = "sha256-27+SXo0fjFwJFFm/NhpDhq95dMwiN8RCJO7j5ic49Ls=";
       patches = [ ./fix-build-with-boost-1.79-5_0-linux.patch ];
     }
-  else lib.optionalAttrs stdenv.isDarwin
+  else lib.optionalAttrs stdenv.hostPlatform.isDarwin
     {
       version = "5.0.3"; # at least darwin has to stay on 5.0.3 until the SDK used by nixpkgs is bumped to 10.13
       sha256 = "1p9pq0dfd6lynvnz5p1c8dqp4filzrz86j840xwxwx82dm1zl6p0";