1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/servers/nosql/mongodb/default.nix

72 lines
2 KiB
Nix
Raw Normal View History

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