2016-04-13 10:28:52 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, scons, boost, gperftools, pcre-cpp, snappy
|
2015-04-08 22:41:17 +01:00
|
|
|
, zlib, libyamlcpp, sasl, openssl, libpcap, wiredtiger
|
|
|
|
}:
|
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;
|
|
|
|
|
2016-01-27 02:48:57 +00:00
|
|
|
let version = "3.2.1";
|
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" ];
|
2014-09-14 19:20:10 +01:00
|
|
|
buildInputs = [
|
2016-04-13 10:28:52 +01:00
|
|
|
sasl boost gperftools pcre-cpp snappy
|
2015-05-20 06:01:08 +01:00
|
|
|
zlib libyamlcpp sasl openssl libpcap
|
2015-10-19 01:23:05 +01:00
|
|
|
]; # ++ optional stdenv.is64bit wiredtiger;
|
2014-09-14 19:20:10 +01:00
|
|
|
|
|
|
|
other-args = concatStringsSep " " ([
|
|
|
|
"--ssl"
|
2015-04-08 22:41:17 +01:00
|
|
|
#"--rocksdb" # Don't have this packaged yet
|
2015-05-20 06:01:08 +01:00
|
|
|
"--wiredtiger=${if stdenv.is64bit then "on" else "off"}"
|
2016-01-27 02:48:57 +00:00
|
|
|
"--js-engine=mozjs"
|
2014-09-14 19:20:10 +01:00
|
|
|
"--use-sasl-client"
|
2015-06-25 07:04:41 +01:00
|
|
|
"--disable-warnings-as-errors"
|
2016-01-27 02:48:57 +00:00
|
|
|
"VARIANT_DIR=nixos" # Needed so we don't produce argument lists that are too long for gcc / ld
|
|
|
|
"CC=$CC"
|
|
|
|
"CXX=$CXX"
|
|
|
|
"CCFLAGS=\"${concatStringsSep " " (map (input: "-I${input}/include") buildInputs)}\""
|
|
|
|
"LINKFLAGS=\"${concatStringsSep " " (map (input: "-L${input}/lib") buildInputs)}\""
|
2014-09-14 19:20:10 +01:00
|
|
|
] ++ map (lib: "--use-system-${lib}") system-libraries);
|
2014-04-26 19:13:51 +01:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2013-07-18 20:05:49 +01:00
|
|
|
name = "mongodb-${version}";
|
2012-01-18 20:32:41 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-18 20:05:49 +01:00
|
|
|
url = "http://downloads.mongodb.org/src/mongodb-src-r${version}.tar.gz";
|
2016-01-27 02:48:57 +00:00
|
|
|
sha256 = "059gskly8maj2c9iy46gccx7a9ya522pl5aaxl5vss5bllxilhsh";
|
2012-01-18 20:32:41 +00:00
|
|
|
};
|
|
|
|
|
2014-09-14 19:20:10 +01:00
|
|
|
nativeBuildInputs = [ scons ];
|
|
|
|
inherit buildInputs;
|
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
|
|
|
[
|
|
|
|
# When not building with the system valgrind, the build should use the
|
|
|
|
# vendored header file - regardless of whether or not we're using the system
|
|
|
|
# tcmalloc - so we need to lift the include path manipulation out of the
|
|
|
|
# conditional.
|
|
|
|
./valgrind-include.patch
|
|
|
|
|
|
|
|
# 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
|
2012-01-18 20:32:41 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
2015-04-08 22:59:35 +01:00
|
|
|
scons -j $NIX_BUILD_CORES core --release ${other-args}
|
2012-01-18 20:32:41 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2013-05-12 17:21:13 +01:00
|
|
|
mkdir -p $out/lib
|
2015-04-08 22:59:35 +01:00
|
|
|
scons -j $NIX_BUILD_CORES install --release --prefix=$out ${other-args}
|
2012-01-18 20:32:41 +00:00
|
|
|
'';
|
|
|
|
|
2015-04-08 22:59:35 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-01-18 20:32:41 +00:00
|
|
|
meta = {
|
|
|
|
description = "a scalable, high-performance, open source NoSQL database";
|
|
|
|
homepage = http://www.mongodb.org;
|
2014-08-29 16:56:07 +01:00
|
|
|
license = licenses.agpl3;
|
2012-01-18 20:32:41 +00:00
|
|
|
|
2016-01-27 02:48:57 +00:00
|
|
|
maintainers = with maintainers; [ bluescreen303 offline wkennington cstrahan ];
|
2014-08-29 16:56:07 +01:00
|
|
|
platforms = platforms.unix;
|
2012-01-18 20:32:41 +00:00
|
|
|
};
|
|
|
|
}
|