mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
15 lines
238 B
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
|
|
];
|
|
}
|