summary refs log tree commit diff
path: root/pkgs/servers/nosql/mongodb/v3_4.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/nosql/mongodb/v3_4.nix')
-rw-r--r--pkgs/servers/nosql/mongodb/v3_4.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/pkgs/servers/nosql/mongodb/v3_4.nix b/pkgs/servers/nosql/mongodb/v3_4.nix
deleted file mode 100644
index 666a92004b4..00000000000
--- a/pkgs/servers/nosql/mongodb/v3_4.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ callPackage, lib, sasl, boost, Security, CoreFoundation, cctools }:
-
-let
-  buildMongoDB = callPackage ./mongodb.nix {
-    inherit sasl;
-    inherit boost;
-    inherit Security;
-    inherit CoreFoundation;
-    inherit cctools;
-  };
-in buildMongoDB {
-  version = "3.4.24";
-  sha256 = "0j6mvgv0jnsnvgkl8505bl88kbxkba66qijlpi1la0dd5pd1imfr";
-  patches = [ ./forget-build-dependencies-3-4.patch ];
-  license = lib.licenses.agpl3;
-}