rocksdb_lite: remove

This feature was removed in rocksdb 8.0.0.
This commit is contained in:
Charles Hall 2023-07-14 16:07:24 -07:00 committed by Yt
parent 933c451722
commit 7dbbfb6764
2 changed files with 0 additions and 4 deletions

View File

@ -12,7 +12,6 @@
, windows
, enableJemalloc ? false
, jemalloc
, enableLite ? false
, enableShared ? !stdenv.hostPlatform.isStatic
, sse42Support ? stdenv.hostPlatform.sse4_2Support
}:
@ -68,7 +67,6 @@ stdenv.mkDerivation rec {
"-DUSE_RTTI=1"
"-DROCKSDB_INSTALL_ON_WINDOWS=YES" # harmless elsewhere
(lib.optional sse42Support "-DFORCE_SSE42=1")
(lib.optional enableLite "-DROCKSDB_LITE=1")
"-DFAIL_ON_WARNINGS=${if stdenv.hostPlatform.isMinGW then "NO" else "YES"}"
] ++ lib.optional (!enableShared) "-DROCKSDB_BUILD_SHARED=0";

View File

@ -24340,8 +24340,6 @@ with pkgs;
rocksdb = callPackage ../development/libraries/rocksdb { };
rocksdb_lite = rocksdb.override { enableLite = true; };
rocksdb_6_23 = rocksdb.overrideAttrs rec {
pname = "rocksdb";
version = "6.23.3";