Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem: rocksdb is not updated #1207

Merged
merged 6 commits into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## UNRELEASED

- [#1197](https://github.com/crypto-org-chain/cronos/pull/1197) tune rocksdb options to control memory consumption.
- [#]() Update rocksdb to `v8.5.4`.
yihuang marked this conversation as resolved.
Show resolved Hide resolved

*Aug 11, 2023*

Expand Down
5 changes: 3 additions & 2 deletions nix/rocksdb.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchzip
yihuang marked this conversation as resolved.
Show resolved Hide resolved
, fetchpatch
, cmake
, ninja
Expand All @@ -21,13 +22,13 @@

stdenv.mkDerivation rec {
pname = "rocksdb";
version = "8.5.3";
version = "8.5.4";

src = fetchFromGitHub {
owner = "facebook";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Qa4bAprXptA79ilNE5KSfggEDvNFHdrvDQ6SvzWMQus=";
sha256 = "sha256-74CsGPdLgonxmXhcryn98sjFW8bb+j0/vzo/4cK5xf8=";
};

nativeBuildInputs = [ cmake ninja ];
Expand Down
Loading