From fe6ec3d13a1554458e647511fb364b65572b363a Mon Sep 17 00:00:00 2001 From: Austin Seipp <aseipp@pobox.com> Date: Tue, 14 Apr 2015 12:58:14 -0500 Subject: [PATCH] nixpkgs: rethinkdb 1.15.2 -> 2.0.0-1 Signed-off-by: Austin Seipp <aseipp@pobox.com> --- pkgs/servers/nosql/rethinkdb/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/servers/nosql/rethinkdb/default.nix b/pkgs/servers/nosql/rethinkdb/default.nix index 1c8eac99737c..79343b044836 100644 --- a/pkgs/servers/nosql/rethinkdb/default.nix +++ b/pkgs/servers/nosql/rethinkdb/default.nix @@ -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 ];