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

83 lines
2.5 KiB
Nix
Raw Normal View History

2014-09-14 18:20:10 +00:00
{ stdenv, fetchurl, scons, boost, gperftools, pcre, snappy
2015-04-08 21:41:17 +00:00
, zlib, libyamlcpp, sasl, openssl, libpcap, wiredtiger
}:
2014-04-26 18:13:51 +00:00
2014-08-29 15:56:07 +00:00
with stdenv.lib;
2015-09-18 02:25:14 +00:00
let version = "3.0.6";
2014-04-26 18:13:51 +00:00
system-libraries = [
"pcre"
2015-04-08 21:41:17 +00:00
"wiredtiger"
2014-04-26 18:13:51 +00:00
"boost"
"snappy"
2015-04-08 21:41:17 +00:00
"zlib"
# "v8"
2014-04-26 18:13:51 +00:00
# "stemmer" -- not nice to package yet (no versioning, no makefile, no shared libs)
2014-09-14 18:20:10 +00:00
"yaml"
2015-04-08 21:41:17 +00:00
] ++ optionals stdenv.isLinux [ "tcmalloc" ];
2014-09-14 18:20:10 +00:00
buildInputs = [
2014-10-01 19:55:40 +00:00
sasl boost gperftools pcre snappy
2015-05-20 05:01:08 +00:00
zlib libyamlcpp sasl openssl libpcap
] ++ optional stdenv.is64bit wiredtiger;
2014-09-14 18:20:10 +00:00
other-args = concatStringsSep " " ([
2015-07-23 22:47:16 +00:00
# these are opt-in, lol
"--cc-use-shell-environment"
"--cxx-use-shell-environment"
2015-04-08 21:41:17 +00:00
"--c++11=on"
2014-09-14 18:20:10 +00:00
"--ssl"
2015-04-08 21:41:17 +00:00
#"--rocksdb" # Don't have this packaged yet
2015-05-20 05:01:08 +00:00
"--wiredtiger=${if stdenv.is64bit then "on" else "off"}"
2015-04-08 21:41:17 +00:00
"--js-engine=v8-3.25"
2014-09-14 18:20:10 +00:00
"--use-sasl-client"
2015-06-25 06:04:41 +00:00
"--disable-warnings-as-errors"
2015-04-08 21:41:17 +00:00
"--variant-dir=nixos" # Needed so we don't produce argument lists that are too long for gcc / ld
2014-09-14 18:20:10 +00:00
"--extrapath=${concatStringsSep "," buildInputs}"
] ++ map (lib: "--use-system-${lib}") system-libraries);
2014-04-26 18:13:51 +00:00
in stdenv.mkDerivation rec {
name = "mongodb-${version}";
src = fetchurl {
url = "http://downloads.mongodb.org/src/mongodb-src-r${version}.tar.gz";
2015-09-18 02:25:14 +00:00
sha256 = "0bc2khi36ck0y7dhppvjp8wy479hzyw34qs0965qj4gd2va6p7v0";
};
2014-09-14 18:20:10 +00:00
nativeBuildInputs = [ scons ];
inherit buildInputs;
postPatch = ''
2014-09-14 18:20:10 +00:00
# fix environment variable reading
substituteInPlace SConstruct \
2015-04-08 21:41:17 +00:00
--replace "env = Environment(" "env = Environment(ENV = os.environ,"
2015-07-23 22:47:16 +00: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-08 21:59:35 +00:00
scons -j $NIX_BUILD_CORES core --release ${other-args}
'';
installPhase = ''
mkdir -p $out/lib
2015-04-08 21:59:35 +00:00
scons -j $NIX_BUILD_CORES install --release --prefix=$out ${other-args}
'';
2015-04-08 21:59:35 +00:00
enableParallelBuilding = true;
meta = {
description = "a scalable, high-performance, open source NoSQL database";
homepage = http://www.mongodb.org;
2014-08-29 15:56:07 +00:00
license = licenses.agpl3;
2014-09-14 18:20:10 +00:00
maintainers = with maintainers; [ bluescreen303 offline wkennington ];
2014-08-29 15:56:07 +00:00
platforms = platforms.unix;
};
}