continuwuity/nix/rocksdb-updater.nix
Henry-Hiles 8e71ed7b63
Some checks failed
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 8s
Documentation / Build and Deploy Documentation (pull_request) Has been skipped
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m12s
Checks / Prek / Check changed files (pull_request) Successful in 4s
Update flake hashes / update-flake-hashes (pull_request) Failing after 1m5s
Checks / Prek / Clippy and Cargo Tests (pull_request) Has been cancelled
fix: dynamically link rocksdb on dynamic nix builds
Fixes liburing error.
2026-06-20 13:19:35 -04:00

14 lines
310 B
Nix

{
perSystem =
{ pkgs, ... }:
{
apps.update-rocksdb = {
type = "app";
program = pkgs.writeShellApplication {
name = "update-rocksdb";
runtimeInputs = [ pkgs.nix-update ];
text = "nix-update rocksdb -F --version branch";
};
};
};
}