mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
11 lines
196 B
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
|
|
];
|
|
}
|