feat: add rocksdb updater nix app

This commit is contained in:
Henry-Hiles
2026-03-31 16:18:14 -04:00
committed by Henry Hiles
parent 02cf6b5695
commit 1cfa3ff10b
2 changed files with 15 additions and 0 deletions
+1
View File
@@ -5,5 +5,6 @@
./packages ./packages
./devshell.nix ./devshell.nix
./fmt.nix ./fmt.nix
./rocksdb-updater.nix
]; ];
} }
+14
View File
@@ -0,0 +1,14 @@
{
perSystem =
{ pkgs, ... }:
{
apps.update-rocksdb = {
type = "app";
program = pkgs.writeShellApplication {
name = "update-rocksdb";
runtimeInputs = [ pkgs.nix-update ];
text = "nix-update rocksdb -F --version branch";
};
};
};
}