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-04-08 21:41:17 +00:00
|
|
|
let version = "3.0.1";
|
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-04-08 21:41:17 +00:00
|
|
|
zlib libyamlcpp sasl openssl libpcap wiredtiger
|
2014-09-14 18:20:10 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
other-args = concatStringsSep " " ([
|
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
|
|
|
|
"--wiredtiger=on"
|
|
|
|
"--js-engine=v8-3.25"
|
2014-09-14 18:20:10 +00:00
|
|
|
"--use-sasl-client"
|
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 {
|
2013-07-18 19:05:49 +00:00
|
|
|
name = "mongodb-${version}";
|
2012-01-18 20:32:41 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-18 19:05:49 +00:00
|
|
|
url = "http://downloads.mongodb.org/src/mongodb-src-r${version}.tar.gz";
|
2015-04-08 21:41:17 +00:00
|
|
|
sha256 = "04qjw7b98h37g8rcih7va3rvg2z95ly38bg181a4nfkak50hd638";
|
2012-01-18 20:32:41 +00:00
|
|
|
};
|
|
|
|
|
2014-09-14 18:20:10 +00:00
|
|
|
nativeBuildInputs = [ scons ];
|
|
|
|
inherit buildInputs;
|
2012-01-18 20:32:41 +00:00
|
|
|
|
2012-09-09 15:25:59 +00:00
|
|
|
postPatch = ''
|
2014-09-14 18:20:10 +00:00
|
|
|
# fix environment variable reading
|
2013-05-12 16:21:13 +00:00
|
|
|
substituteInPlace SConstruct \
|
2015-04-08 21:41:17 +00:00
|
|
|
--replace "env = Environment(" "env = Environment(ENV = os.environ,"
|
2012-01-18 20:32:41 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
2015-04-08 21:41:17 +00:00
|
|
|
scons core --release ${other-args}
|
2012-01-18 20:32:41 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2013-05-12 16:21:13 +00:00
|
|
|
mkdir -p $out/lib
|
2014-09-14 18:20:10 +00:00
|
|
|
scons install --release --prefix=$out ${other-args}
|
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 15:56:07 +00:00
|
|
|
license = licenses.agpl3;
|
2012-01-18 20:32:41 +00:00
|
|
|
|
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;
|
2012-01-18 20:32:41 +00:00
|
|
|
};
|
|
|
|
}
|