mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-20 09:11:24 +01:00
14 lines
219 B
Nix
14 lines
219 B
Nix
# Dependencies (keep sorted)
|
|
{ rocksdb
|
|
, rust-jemalloc-sys
|
|
|
|
# Options (keep sorted)
|
|
, enableJemalloc ? false
|
|
}:
|
|
|
|
rocksdb.override {
|
|
jemalloc = rust-jemalloc-sys;
|
|
|
|
enableLiburing = false;
|
|
inherit enableJemalloc;
|
|
}
|