2016-04-13 10:28:52 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, scons, boost, gperftools, pcre-cpp, snappy
|
2018-07-21 01:44:44 +01:00
|
|
|
, zlib, libyamlcpp, sasl, openssl, libpcap, Security
|
2015-04-08 22:41:17 +01:00
|
|
|
}:
|
2014-04-26 19:13:51 +01:00
|
|
|
|
2016-01-27 02:48:57 +00:00
|
|
|
# Note:
|
|
|
|
# The command line tools are written in Go as part of a different package (mongodb-tools)
|
|
|
|
|
2014-08-29 16:56:07 +01:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2018-01-08 18:56:15 +00:00
|
|
|
let version = "3.4.10";
|
2014-04-26 19:13:51 +01:00
|
|
|
system-libraries = [
|
|
|
|
"pcre"
|
2016-01-27 02:48:57 +00:00
|
|
|
#"asio" -- XXX use package?
|
2015-10-19 01:23:05 +01:00
|
|
|
#"wiredtiger"
|
2014-04-26 19:13:51 +01:00
|
|
|
"boost"
|
|
|
|
"snappy"
|
2015-04-08 22:41:17 +01:00
|
|
|
"zlib"
|
2016-01-27 02:48:57 +00:00
|
|
|
#"valgrind" -- mongodb only requires valgrind.h, which is vendored in the source.
|
|
|
|
#"stemmer" -- not nice to package yet (no versioning, no makefile, no shared libs).
|
2014-09-14 19:20:10 +01:00
|
|
|
"yaml"
|
2015-04-08 22:41:17 +01:00
|
|
|
] ++ optionals stdenv.isLinux [ "tcmalloc" ];
|
2016-02-27 00:48:49 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
in stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "mongodb";
|
|
|
|
inherit version;
|
2012-01-18 20:32:41 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-01-20 17:26:11 +00:00
|
|
|
url = "https://fastdl.mongodb.org/src/mongodb-src-r${version}.tar.gz";
|
2018-01-08 18:56:15 +00:00
|
|
|
sha256 = "1wz2mhl9z0b1bdkg6m8v8mvw9k60mdv5ybq554xn3yjj9z500f24";
|
2012-01-18 20:32:41 +00:00
|
|
|
};
|
|
|
|
|
2014-09-14 19:20:10 +01:00
|
|
|
nativeBuildInputs = [ scons ];
|
2018-11-12 02:52:07 +00:00
|
|
|
buildInputs = [
|
|
|
|
sasl boost gperftools pcre-cpp snappy
|
|
|
|
zlib libyamlcpp sasl openssl.dev openssl.out libpcap
|
|
|
|
] ++ stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
2012-01-18 20:32:41 +00:00
|
|
|
|
2016-03-18 17:47:04 +00:00
|
|
|
patches =
|
2016-04-15 18:01:14 +01:00
|
|
|
[
|
|
|
|
# MongoDB keeps track of its build parameters, which tricks nix into
|
|
|
|
# keeping dependencies to build inputs in the final output.
|
|
|
|
# We remove the build flags from buildInfo data.
|
|
|
|
./forget-build-dependencies.patch
|
2016-03-18 17:47:04 +00:00
|
|
|
(fetchpatch {
|
|
|
|
url = https://projects.archlinux.org/svntogit/community.git/plain/trunk/boost160.patch?h=packages/mongodb;
|
|
|
|
name = "boost160.patch";
|
|
|
|
sha256 = "0bvsf3499zj55pzamwjmsssr6x63w434944w76273fr5rxwzcmh8";
|
|
|
|
})
|
|
|
|
];
|
2016-01-27 02:48:57 +00:00
|
|
|
|
2012-09-09 16:25:59 +01:00
|
|
|
postPatch = ''
|
2014-09-14 19:20:10 +01:00
|
|
|
# fix environment variable reading
|
2013-05-12 17:21:13 +01:00
|
|
|
substituteInPlace SConstruct \
|
2015-04-08 22:41:17 +01:00
|
|
|
--replace "env = Environment(" "env = Environment(ENV = os.environ,"
|
2015-07-23 23:47:16 +01:00
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
|
|
|
|
substituteInPlace src/third_party/s2/s1angle.cc --replace drem remainder
|
|
|
|
substituteInPlace src/third_party/s2/s1interval.cc --replace drem remainder
|
|
|
|
substituteInPlace src/third_party/s2/s2cap.cc --replace drem remainder
|
|
|
|
substituteInPlace src/third_party/s2/s2latlng.cc --replace drem remainder
|
|
|
|
substituteInPlace src/third_party/s2/s2latlngrect.cc --replace drem remainder
|
2016-09-13 16:18:46 +01:00
|
|
|
'' + stdenv.lib.optionalString stdenv.isi686 ''
|
|
|
|
|
|
|
|
# don't fail by default on i686
|
|
|
|
substituteInPlace src/mongo/db/storage/storage_options.h \
|
|
|
|
--replace 'engine("wiredTiger")' 'engine("mmapv1")'
|
2012-01-18 20:32:41 +00:00
|
|
|
'';
|
|
|
|
|
2017-11-01 13:13:34 +00:00
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optional stdenv.cc.isClang "-Wno-unused-command-line-argument";
|
|
|
|
|
2018-11-12 02:52:07 +00:00
|
|
|
sconsFlags = [
|
|
|
|
"--release"
|
|
|
|
"--ssl"
|
|
|
|
#"--rocksdb" # Don't have this packaged yet
|
|
|
|
"--wiredtiger=${if stdenv.is64bit then "on" else "off"}"
|
|
|
|
"--js-engine=mozjs"
|
|
|
|
"--use-sasl-client"
|
|
|
|
"--disable-warnings-as-errors"
|
|
|
|
"VARIANT_DIR=nixos" # Needed so we don't produce argument lists that are too long for gcc / ld
|
|
|
|
] ++ map (lib: "--use-system-${lib}") system-libraries;
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
sconsFlags+=" CC=$CC"
|
|
|
|
sconsFlags+=" CXX=$CXX"
|
2019-07-28 12:54:50 +01:00
|
|
|
'' + optionalString stdenv.isAarch64 ''
|
|
|
|
sconsFlags+=" CCFLAGS='-march=armv8-a+crc'"
|
2012-01-18 20:32:41 +00:00
|
|
|
'';
|
|
|
|
|
2018-11-12 02:52:07 +00:00
|
|
|
preInstall = ''
|
2013-05-12 17:21:13 +01:00
|
|
|
mkdir -p $out/lib
|
2012-01-18 20:32:41 +00:00
|
|
|
'';
|
2018-11-12 02:52:07 +00:00
|
|
|
prefixKey = "--prefix=";
|
2012-01-18 20:32:41 +00:00
|
|
|
|
2015-04-08 22:59:35 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningEnable = [ "pie" ];
|
2016-02-27 00:48:49 +00:00
|
|
|
|
2012-01-18 20:32:41 +00:00
|
|
|
meta = {
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "A scalable, high-performance, open source NoSQL database";
|
2012-01-18 20:32:41 +00:00
|
|
|
homepage = http://www.mongodb.org;
|
2014-08-29 16:56:07 +01:00
|
|
|
license = licenses.agpl3;
|
2012-01-18 20:32:41 +00:00
|
|
|
|
2019-01-26 10:01:09 +00:00
|
|
|
maintainers = with maintainers; [ bluescreen303 offline cstrahan ];
|
2014-08-29 16:56:07 +01:00
|
|
|
platforms = platforms.unix;
|
2012-01-18 20:32:41 +00:00
|
|
|
};
|
|
|
|
}
|