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
Fixes liburing error.
14 lines
310 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|