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.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/servers/nosql/mongodb/5.0.nix b/pkgs/servers/nosql/mongodb/5.0.nix
deleted file mode 100644
index f69ad97f8ac6..000000000000
--- a/pkgs/servers/nosql/mongodb/5.0.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ stdenv, callPackage, lib, sasl, boost
-, Security, CoreFoundation, cctools
-, avxSupport ? stdenv.hostPlatform.avxSupport
-, nixosTests
-}:
-
-let
-  buildMongoDB = callPackage ./mongodb.nix {
-    inherit sasl boost Security CoreFoundation cctools;
-  };
-  variants = if stdenv.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
-    {
-      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";
-      patches = [ ./fix-build-with-boost-1.79-5_0.patch ]; # no darwin in name to prevent unnecessary rebuild
-    };
-in
-buildMongoDB {
-  inherit avxSupport;
-  version = variants.version;
-  sha256 = variants.sha256;
-  patches = [
-    ./forget-build-dependencies-4-4.patch
-    ./asio-no-experimental-string-view-4-4.patch
-    ./fix-gcc-Wno-exceptions-5.0.patch
-    # Fix building with python 3.12 since the imp module was removed
-    ./mongodb-python312.patch
-  ] ++ variants.patches;
-  passthru.tests = { inherit (nixosTests) mongodb; };
-}