continuwuity/nix/packages/rocksdb.nix
renovate 14602e730e
All checks were successful
Documentation / Build and Deploy Documentation (push) Successful in 1m22s
Checks / Prek / Check changed files (push) Successful in 7s
Release Docker Image / Build linux-amd64 (release) (push) Successful in 9m26s
Release Docker Image / Build linux-arm64 (release) (push) Successful in 9m39s
Checks / Prek / Pre-commit & Formatting (push) Successful in 21m0s
Maintenance / Renovate / Renovate (push) Successful in 2m42s
Release Docker Image / Create Multi-arch Release Manifest (push) Successful in 18s
Release Docker Image / Build linux-amd64 (max-perf) (push) Successful in 28m59s
Release Docker Image / Build linux-arm64 (max-perf) (push) Successful in 31m7s
Release Docker Image / Release Binaries (push) Has been skipped
Release Docker Image / Create Max-Perf Manifest (push) Successful in 18s
Release Docker Image / Mirror Images (push) Successful in 2m10s
Checks / Prek / Clippy and Cargo Tests (push) Successful in 11m53s
chore(Nix): Updated flake hashes
2026-05-19 19:42:59 +00:00

34 lines
1.2 KiB
Nix

{
stdenv,
rocksdb,
fetchFromGitea,
rust-jemalloc-sys-unprefixed,
...
}:
(rocksdb.override {
# rocksdb fails to build with prefixed jemalloc, which is required on
# darwin due to [1]. In this case, fall back to building rocksdb with
# libc malloc. This should not cause conflicts, because all of the
# jemalloc symbols are prefixed.
#
# [1]: https://github.com/tikv/jemallocator/blob/ab0676d77e81268cd09b059260c75b38dbef2d51/jemalloc-sys/src/env.rs#L17
jemalloc = rust-jemalloc-sys-unprefixed;
enableJemalloc = stdenv.hostPlatform.isLinux;
}).overrideAttrs
({
version = "continuwuity-v0.5.0-unstable-2026-05-19";
src = fetchFromGitea {
domain = "forgejo.ellis.link";
owner = "continuwuation";
repo = "rocksdb";
rev = "3756b2b905e13216d8b56bcc783d814e7b073aff";
hash = "sha256-rSv4fr2bf9JJwdodgeuPCuceeh7k97KVxrAOC0wyPQY=";
};
# We have this already at https://forgejo.ellis.link/continuwuation/rocksdb/commit/a935c0273e1ba44eacf88ce3685a9b9831486155
# Unsetting `patches` so we don't have to revert it and make this nix exclusive
patches = [ ];
# Unset postPatch, as our version override breaks version-specific sed calls in the original package
postPatch = "";
})