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

36 lines
1.0 KiB
Nix
Raw Normal View History

2014-04-26 18:15:28 +00:00
{ stdenv, fetchurl, which, protobuf, gperftools, boost, zlib, python, m4 }:
2013-11-08 22:45:57 +00:00
stdenv.mkDerivation rec {
2014-04-26 18:15:28 +00:00
name = "rethinkdb-1.12.4";
2013-11-08 22:45:57 +00:00
src = fetchurl {
url = "http://download.rethinkdb.com/dist/${name}.tgz";
2014-04-26 18:15:28 +00:00
sha256 = "1dq2vbgms016ic2hifclm1m58i4804khkn0lnvz47rkm7i0564if";
2013-11-08 22:45:57 +00:00
};
preConfigure = ''
export ALLOW_WARNINGS=1
patchShebangs .
2013-11-08 22:45:57 +00:00
'';
configureFlags = "--lib-path ${gperftools}/lib";
2014-04-26 18:15:28 +00:00
buildInputs = [ protobuf zlib boost ];
2013-11-08 22:45:57 +00:00
2014-04-26 18:15:28 +00:00
nativeBuildInputs = [ which m4 python ];
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.
'';
homepage = http://www.rethinkdb.com;
license = "AGPLv3";
maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
platforms = stdenv.lib.platforms.all;
};
}