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

107 lines
3.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, scons, boost, gperftools, pcre-cpp, 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;
let version = "3.2.9";
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 = [
sasl boost gperftools pcre-cpp 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";
sha256 = "06q6j2bjy31pjwqws53wdpmn2x8w2hafzsnv1s3wx15pc9vq3y15";
};
2014-09-14 22:20:10 +04:00
nativeBuildInputs = [ scons ];
inherit buildInputs;
patches =
[
# 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
(fetchpatch {
url = https://projects.archlinux.org/svntogit/community.git/plain/trunk/boost160.patch?h=packages/mongodb;
name = "boost160.patch";
sha256 = "0bvsf3499zj55pzamwjmsssr6x63w434944w76273fr5rxwzcmh8";
})
];
2016-01-27 05:48:57 +03:00
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;
hardeningEnable = [ "pie" ];
2016-02-27 03:48:49 +03:00
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;
};
}