nixfiles/packages/synapse-cleanup/default.nix

15 lines
238 B
Nix

{
wrapShellScriptBin,
pkgs,
}:
wrapShellScriptBin "synapse-cleanup" ./cleanup.sh {
depsRuntimePath = with pkgs; [
matrix-synapse-tools.rust-synapse-compress-state
curl
gawk
sudo
postgresql
rink
jq
];
}