fix(nix): Added unstable flag to buildDeps

This commit is contained in:
Ben Botwin 2026-02-20 09:03:09 -05:00 committed by Jade Ellis
parent f847918575
commit 4aa03a71eb
No known key found for this signature in database
GPG key ID: 8705A2A3EBF77BD2

View file

@ -77,7 +77,12 @@ rec {
craneLib.buildDepsOnly (
(commonAttrs commonAttrsArgs)
// {
env = uwuenv.buildDepsOnlyEnv // (makeRocksDBEnv { inherit rocksdb; });
env = uwuenv.buildDepsOnlyEnv
// (makeRocksDBEnv { inherit rocksdb; })
// {
# required since we started using unstable reqwest apparently ... otherwise the all-features build will fail
RUSTFLAGS = "--cfg reqwest_unstable";
};
inherit (features) cargoExtraArgs;
}