nixpkgs/pkgs/servers/nosql/mongodb/default.nix

94 lines
3.1 KiB
Nix
Raw Normal View History

2014-09-14 22:20:10 +04:00
{ stdenv, fetchurl, scons, boost, gperftools, pcre, snappy
2015-04-09 00:41:17 +03:00
, zlib, libyamlcpp, sasl, openssl, libpcap, wiredtiger
}:
2014-04-26 22:13:51 +04:00
2016-01-27 05:48:57 +03:00
# Note:
# The command line tools are written in Go as part of a different package (mongodb-tools)
2014-08-29 19:56:07 +04:00
with stdenv.lib;
2016-01-27 05:48:57 +03:00
let version = "3.2.1";
2014-04-26 22:13:51 +04:00
system-libraries = [
"pcre"
2016-01-27 05:48:57 +03:00
#"asio" -- XXX use package?
#"wiredtiger"
2014-04-26 22:13:51 +04:00
"boost"
"snappy"
2015-04-09 00:41:17 +03:00
"zlib"
2016-01-27 05:48:57 +03: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 22:20:10 +04:00
"yaml"
2015-04-09 00:41:17 +03:00
] ++ optionals stdenv.isLinux [ "tcmalloc" ];
2016-02-27 03:48:49 +03:00
2014-09-14 22:20:10 +04:00
buildInputs = [
2014-10-01 23:55:40 +04:00
sasl boost gperftools pcre snappy
2015-05-20 08:01:08 +03:00
zlib libyamlcpp sasl openssl libpcap
]; # ++ optional stdenv.is64bit wiredtiger;
2014-09-14 22:20:10 +04:00
other-args = concatStringsSep " " ([
"--ssl"
2015-04-09 00:41:17 +03:00
#"--rocksdb" # Don't have this packaged yet
2015-05-20 08:01:08 +03:00
"--wiredtiger=${if stdenv.is64bit then "on" else "off"}"
2016-01-27 05:48:57 +03:00
"--js-engine=mozjs"
2014-09-14 22:20:10 +04:00
"--use-sasl-client"
2015-06-25 09:04:41 +03:00
"--disable-warnings-as-errors"
2016-01-27 05:48:57 +03: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 22:20:10 +04:00
] ++ map (lib: "--use-system-${lib}") system-libraries);
2014-04-26 22:13:51 +04:00
in stdenv.mkDerivation rec {
name = "mongodb-${version}";
src = fetchurl {
url = "http://downloads.mongodb.org/src/mongodb-src-r${version}.tar.gz";
2016-01-27 05:48:57 +03:00
sha256 = "059gskly8maj2c9iy46gccx7a9ya522pl5aaxl5vss5bllxilhsh";
};
2014-09-14 22:20:10 +04:00
nativeBuildInputs = [ scons ];
inherit buildInputs;
2016-01-27 05:48:57 +03: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.
patches = [ ./valgrind-include.patch ];
postPatch = ''
2014-09-14 22:20:10 +04:00
# fix environment variable reading
substituteInPlace SConstruct \
2015-04-09 00:41:17 +03:00
--replace "env = Environment(" "env = Environment(ENV = os.environ,"
2015-07-24 01:47:16 +03: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
'';
buildPhase = ''
2015-04-09 00:59:35 +03:00
scons -j $NIX_BUILD_CORES core --release ${other-args}
'';
installPhase = ''
mkdir -p $out/lib
2015-04-09 00:59:35 +03:00
scons -j $NIX_BUILD_CORES install --release --prefix=$out ${other-args}
'';
2015-04-09 00:59:35 +03:00
enableParallelBuilding = true;
2016-02-27 03:48:49 +03:00
hardening_pie = true;
meta = {
description = "a scalable, high-performance, open source NoSQL database";
homepage = http://www.mongodb.org;
2014-08-29 19:56:07 +04:00
license = licenses.agpl3;
2016-01-27 05:48:57 +03:00
maintainers = with maintainers; [ bluescreen303 offline wkennington cstrahan ];
2014-08-29 19:56:07 +04:00
platforms = platforms.unix;
};
}