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

69 lines
1.8 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-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 {
name = "mongodb-${version}";
src = fetchurl {
url = "http://downloads.mongodb.org/src/mongodb-src-r${version}.tar.gz";
2015-04-08 21:41:17 +00:00
sha256 = "04qjw7b98h37g8rcih7va3rvg2z95ly38bg181a4nfkak50hd638";
};
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,"
'';
buildPhase = ''
2015-04-08 21:41:17 +00:00
scons core --release ${other-args}
'';
installPhase = ''
mkdir -p $out/lib
2014-09-14 18:20:10 +00:00
scons install --release --prefix=$out ${other-args}
'';
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;
};
}