2014-09-14 18:20:10 +00:00
|
|
|
{ stdenv, fetchurl, scons, boost, gperftools, pcre, snappy
|
|
|
|
, libyamlcpp, sasl, openssl, libpcap }:
|
2014-04-26 18:13:51 +00:00
|
|
|
|
2014-08-29 15:56:07 +00:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2015-03-06 21:42:32 +00:00
|
|
|
let version = "2.6.8";
|
2014-04-26 18:13:51 +00:00
|
|
|
system-libraries = [
|
|
|
|
"pcre"
|
|
|
|
"boost"
|
|
|
|
"snappy"
|
|
|
|
# "stemmer" -- not nice to package yet (no versioning, no makefile, no shared libs)
|
2014-09-14 18:20:10 +00:00
|
|
|
"yaml"
|
|
|
|
# "v8"
|
2014-08-29 15:56:07 +00:00
|
|
|
] ++ optionals (!stdenv.isDarwin) [ "tcmalloc" ];
|
2014-09-14 18:20:10 +00:00
|
|
|
buildInputs = [
|
2014-10-01 19:55:40 +00:00
|
|
|
sasl boost gperftools pcre snappy
|
2014-09-14 18:20:10 +00:00
|
|
|
libyamlcpp sasl openssl libpcap
|
|
|
|
];
|
|
|
|
|
|
|
|
other-args = concatStringsSep " " ([
|
|
|
|
"--ssl"
|
|
|
|
"--use-sasl-client"
|
|
|
|
"--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-03-06 21:42:32 +00:00
|
|
|
sha256 = "01hs65xswggy628hxka2f63qvwz5rfhqlkb05kr20wz1kl6zd5qr";
|
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 yaml-cpp detection
|
|
|
|
sed -i -e "s/\[\"yaml\"\]/\[\"yaml-cpp\"\]/" SConstruct
|
|
|
|
|
|
|
|
# bug #482576
|
|
|
|
sed -i -e "/-Werror/d" src/third_party/v8/SConscript
|
|
|
|
|
2015-02-25 19:28:42 +00:00
|
|
|
# fix inclusion of std::swap
|
|
|
|
sed -i '1i #include <algorithm>' src/mongo/shell/linenoise_utf8.h
|
|
|
|
|
2014-09-14 18:20:10 +00:00
|
|
|
# fix environment variable reading
|
2013-05-12 16:21:13 +00:00
|
|
|
substituteInPlace SConstruct \
|
2014-04-26 18:13:51 +00:00
|
|
|
--replace "Environment( BUILD_DIR" "Environment( ENV = os.environ, BUILD_DIR"
|
2012-01-18 20:32:41 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
2014-09-14 18:20:10 +00:00
|
|
|
scons all --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
|
|
|
};
|
|
|
|
}
|