nixfiles/packages/synapse-cleanup/default.nix

11 lines
196 B
Nix

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