nibylandia/pkgs/mastodonUpdate.nix

14 lines
252 B
Nix
Raw Permalink Normal View History

2023-10-14 21:24:33 +00:00
{ runtimeShell, writeScriptBin, mastodon, symlinkJoin }:
let
name = "mastodon-update.sh";
script = writeScriptBin name ''
#!${runtimeShell}
exec ${mastodon.updateScript} "$@"
'';
in symlinkJoin {
inherit name;
paths = [ script ];
}