mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
rethinkdb: upgrade to 1.12.4
This commit is contained in:
parent
b6d8955199
commit
1ebd620485
1 changed files with 5 additions and 6 deletions
|
@ -1,11 +1,11 @@
|
|||
{ stdenv, fetchurl, which, protobuf, v8_3_14, ncurses, gperftools, boost, m4 }:
|
||||
{ stdenv, fetchurl, which, protobuf, gperftools, boost, zlib, python, m4 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rethinkdb-1.11.2";
|
||||
name = "rethinkdb-1.12.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.rethinkdb.com/dist/${name}.tgz";
|
||||
sha256 = "04wz07y891vygc5ksrvkk1ch05xj16nahv20bnxwcllkbl4gf9lj";
|
||||
sha256 = "1dq2vbgms016ic2hifclm1m58i4804khkn0lnvz47rkm7i0564if";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
|
@ -15,10 +15,9 @@ stdenv.mkDerivation rec {
|
|||
|
||||
configureFlags = "--lib-path ${gperftools}/lib";
|
||||
|
||||
buildInputs = [ protobuf v8_3_14 ncurses boost ];
|
||||
|
||||
nativeBuildInputs = [ which m4 ];
|
||||
buildInputs = [ protobuf zlib boost ];
|
||||
|
||||
nativeBuildInputs = [ which m4 python ];
|
||||
|
||||
meta = {
|
||||
description = "An open-source distributed database built with love";
|
||||
|
|
Loading…
Reference in a new issue