fix: use in-flake version of rocksdb instead of nixpkgs' upstream package

Fixes #1801
This commit is contained in:
Bart Oostveen
2026-05-23 19:47:05 +02:00
parent 14a0d2f538
commit db724b67ff
2 changed files with 2 additions and 2 deletions
+1 -2
View File
@@ -5,12 +5,11 @@
liburing,
craneLib,
pkg-config,
callPackage,
rustPlatform,
cargoExtraArgs ? "",
rustflags ? "",
target_cpu ? null,
rocksdb ? callPackage ./rocksdb.nix { },
rocksdb,
profile ? "release",
}:
let
+1
View File
@@ -15,6 +15,7 @@
rocksdb = pkgs.callPackage ./rocksdb.nix { };
default = pkgs.callPackage ./continuwuity.nix {
inherit self craneLib;
inherit (self'.packages) rocksdb;
# extra features via `cargoExtraArgs`
cargoExtraArgs = "-F http3";
# extra RUSTFLAGS via `rustflags`