3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/nosql/rethinkdb/default.nix

44 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, which, m4, python
, protobuf, boost, zlib, curl, openssl, icu, jemalloc
}:
2013-11-08 22:45:57 +00:00
stdenv.mkDerivation rec {
name = "rethinkdb-${version}";
version = "2.1.3";
2013-11-08 22:45:57 +00:00
src = fetchurl {
url = "http://download.rethinkdb.com/dist/${name}.tgz";
sha256 = "03w9fq3wcvwy04b3x6zb3hvwar7b9jfbpq77rmxdlgh5w64vvgwd";
2013-11-08 22:45:57 +00:00
};
preConfigure = ''
export ALLOW_WARNINGS=1
patchShebangs .
2013-11-08 22:45:57 +00:00
'';
configureFlags = [
"--with-jemalloc"
"--lib-path=${jemalloc}/lib"
];
2013-11-08 22:45:57 +00:00
buildInputs = [ protobuf boost zlib curl openssl icu jemalloc ];
2013-11-08 22:45:57 +00:00
2014-04-26 19:15:28 +01:00
nativeBuildInputs = [ which m4 python ];
2013-11-08 22:45:57 +00:00
enableParallelBuilding = true;
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
};
}