summary refs log tree commit diff
path: root/pkgs/servers/nosql/mongodb/v3_6.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-03-28 21:15:15 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2020-03-28 21:15:15 +0100
commita36be028f5a5dcc55f488a78fc0f58b4b8e4033c (patch)
treefee5e8989465811c0472b082260a2d9e91cd334b /pkgs/servers/nosql/mongodb/v3_6.nix
parent48a137da7301f3ec5e15f8c32945b64581ef9f70 (diff)
parent7f4e4b279e729c05f1b18da867c6d2fd2c2ab2f3 (diff)
downloadnixpkgs-a36be028f5a5dcc55f488a78fc0f58b4b8e4033c.tar
nixpkgs-a36be028f5a5dcc55f488a78fc0f58b4b8e4033c.tar.gz
nixpkgs-a36be028f5a5dcc55f488a78fc0f58b4b8e4033c.tar.bz2
nixpkgs-a36be028f5a5dcc55f488a78fc0f58b4b8e4033c.tar.lz
nixpkgs-a36be028f5a5dcc55f488a78fc0f58b4b8e4033c.tar.xz
nixpkgs-a36be028f5a5dcc55f488a78fc0f58b4b8e4033c.tar.zst
nixpkgs-a36be028f5a5dcc55f488a78fc0f58b4b8e4033c.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/servers/nosql/mongodb/v3_6.nix')
-rw-r--r--pkgs/servers/nosql/mongodb/v3_6.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/servers/nosql/mongodb/v3_6.nix b/pkgs/servers/nosql/mongodb/v3_6.nix
new file mode 100644
index 00000000000..68f83631c80
--- /dev/null
+++ b/pkgs/servers/nosql/mongodb/v3_6.nix
@@ -0,0 +1,16 @@
+{ stdenv, 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.6.13";
+  sha256 = "1mbvk4bmabrswjdm01jssxcygjpq5799zqyx901nsi12vlcymwg4";
+  patches = [ ./forget-build-dependencies.patch ]
+    ++ stdenv.lib.optionals stdenv.isDarwin [ ./asio-no-experimental-string-view.patch ];
+}