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

66 lines
2.0 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, which, m4, python
2015-10-20 01:40:55 +00:00
, protobuf, boost, zlib, curl, openssl, icu, jemalloc, libtool
2016-11-09 15:08:35 +00:00
, python2Packages, makeWrapper
}:
2013-11-08 22:45:57 +00:00
stdenv.mkDerivation rec {
name = "rethinkdb-${version}";
2017-07-18 15:42:14 +00:00
version = "2.3.6";
2013-11-08 22:45:57 +00:00
src = fetchurl {
2016-06-11 19:31:42 +00:00
url = "https://download.rethinkdb.com/dist/${name}.tgz";
2017-07-18 15:42:14 +00:00
sha256 = "0a6wlgqa2flf87jrp4fq4y9aihwyhgwclmss56z03b8hd5k5j8f4";
2013-11-08 22:45:57 +00:00
};
2017-08-31 14:53:06 +00:00
patches = [
(fetchurl {
url = "https://github.com/rethinkdb/rethinkdb/commit/871bd3705a1f29c4ab07a096d562a4b06231a97c.patch";
sha256 = "05nagixlwnq3x7441fhll5vs70pxppbsciw8qjqp660bdb5m4jm1";
})
];
2015-10-20 01:40:55 +00:00
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' external/v8_3.30.33.16/build/gyp/pylib/gyp/xcode_emulation.py
# very meta
substituteInPlace mk/support/pkg/re2.sh --replace "-i '''" "-i"
'';
2013-11-08 22:45:57 +00:00
preConfigure = ''
export ALLOW_WARNINGS=1
patchShebangs .
2013-11-08 22:45:57 +00:00
'';
2015-10-20 01:40:55 +00:00
configureFlags = stdenv.lib.optionals (!stdenv.isDarwin) [
"--with-jemalloc"
"--lib-path=${jemalloc}/lib"
];
2013-11-08 22:45:57 +00:00
2016-08-31 11:31:04 +00:00
buildInputs = [ protobuf boost zlib curl openssl icu makeWrapper ]
2015-10-20 01:40:55 +00:00
++ stdenv.lib.optional (!stdenv.isDarwin) jemalloc
++ stdenv.lib.optional stdenv.isDarwin libtool;
2013-11-08 22:45:57 +00:00
2016-11-09 15:08:35 +00:00
nativeBuildInputs = [ which m4 python2Packages.python ];
2013-11-08 22:45:57 +00:00
enableParallelBuilding = true;
2016-08-31 11:31:04 +00:00
postInstall = ''
wrapProgram $out/bin/rethinkdb \
2016-11-09 15:08:35 +00:00
--prefix PATH ":" "${python2Packages.rethinkdb}/bin"
2016-08-31 11:31:04 +00:00
'';
2013-11-08 22:45:57 +00:00
meta = {
description = "An open-source distributed database built with love";
longDescription = ''
RethinkDB is built to store JSON documents, and scale to
multiple machines with very little effort. It has a pleasant
query language that supports really useful queries like table
joins and group by, and is easy to setup and learn.
2013-11-08 22:45:57 +00:00
'';
homepage = http://www.rethinkdb.com;
license = stdenv.lib.licenses.agpl3;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ thoughtpolice bluescreen303 ];
2013-11-08 22:45:57 +00:00
};
}