nixpkgs: rethinkdb 1.15.2 -> 2.0.0-1

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2015-04-14 12:58:14 -05:00
parent f25e4b1f21
commit fe6ec3d13a

View file

@ -1,11 +1,13 @@
{ stdenv, fetchurl, which, protobuf, gperftools, boost, zlib, curl, python, m4 }:
{ stdenv, fetchurl, which, protobuf, gperftools
, boost, zlib, curl, python, m4, icu, jemalloc }:
stdenv.mkDerivation rec {
name = "rethinkdb-1.15.2";
name = "rethinkdb-${version}";
version = "2.0.0-1";
src = fetchurl {
url = "http://download.rethinkdb.com/dist/${name}.tgz";
sha256 = "1fpx9apqm62i332q2isanpdql8gwwab4qxwzrspqwgcka9zd6gy3";
sha256 = "0fbxs6gmlmgkbfrmi0f4xyr3vqwylr6i7fa4p68y12qy6kv7q9pc";
};
preConfigure = ''
@ -13,9 +15,9 @@ stdenv.mkDerivation rec {
patchShebangs .
'';
configureFlags = "--lib-path ${gperftools}/lib";
configureFlags = "--lib-path ${gperftools}/lib --lib-path ${jemalloc}/lib";
buildInputs = [ protobuf boost zlib curl ];
buildInputs = [ protobuf boost zlib curl icu jemalloc ];
nativeBuildInputs = [ which m4 python ];