aboutsummaryrefslogtreecommitdiff
path: root/pkgs/servers/nosql
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2020-07-25 16:18:40 +0200
committerVladimír Čunát <v@cunat.cz>2020-07-25 16:18:40 +0200
commit2b7c0dcdaab946153b0eaba5f2420f15ea27b0d6 (patch)
treee31db6c54aeeef9fafd8a31f7335b9fb02dfd2ba /pkgs/servers/nosql
parentfdbae69e8ce4cf3bfe2c39713586cbea270a608c (diff)
parent744b380a0ec4ec9c2a958e5d1c42ac5da2f9759e (diff)
Merge branch 'staging-next'
Rebuild on Hydra seems OK-ish. mongodb.nix needed some conflict resolution (scons versions); all four versions seem to build fine.
Diffstat (limited to 'pkgs/servers/nosql')
-rw-r--r--pkgs/servers/nosql/mongodb/mongodb.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/nosql/mongodb/mongodb.nix b/pkgs/servers/nosql/mongodb/mongodb.nix
index 1a0ede0ed6df..f57ff7461989 100644
--- a/pkgs/servers/nosql/mongodb/mongodb.nix
+++ b/pkgs/servers/nosql/mongodb/mongodb.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, scons, boost, gperftools, pcre-cpp, snappy, zlib, libyamlcpp
+{ stdenv, fetchurl, sconsPackages, boost, gperftools, pcre-cpp, snappy, zlib, libyamlcpp
, sasl, openssl, libpcap, python27, python38, curl, Security, CoreFoundation, cctools }:
# Note:
@@ -13,12 +13,12 @@ with stdenv.lib;
let
variants = if versionAtLeast version "4.2"
then { python = python38.withPackages (ps: with ps; [ pyyaml cheetah3 psutil setuptools ]);
- scons = scons;
+ scons = sconsPackages.scons_latest;
mozjsVersion = "60";
mozjsReplace = "defined(HAVE___SINCOS)";
}
else { python = python27.withPackages (ps: with ps; [ pyyaml typing cheetah ]);
- scons = scons.py2;
+ scons = sconsPackages.scons_3_1_2;
mozjsVersion = "45";
mozjsReplace = "defined(HAVE_SINCOS)";
};